22.06.2013, 18:18
As I said there's no difference. You can send for example
And boom - here comes the message that connection handle is wrong.
___________________
And looks like it now says that connection handle is wrong on every query. Could it be this function? I just started using it some days ago, dunno if it is.
Quote:
UPDATE `existing_table_name` SET `field_name` = 'value' WHERE `something` = 'value' |
Quote:
SELECT * FROM `existing_table_name` WHERE `field_name` = 'value' |
___________________
And looks like it now says that connection handle is wrong on every query. Could it be this function? I just started using it some days ago, dunno if it is.
pawn Код:
function mysql_real_escape_stringex(str[])
{
new escapedString[64];
mysql_real_escape_string(str, escapedString);
return escapedString;
}