I get this error when I try to use mysql_real_escape_string().

Access denied for user 'ODBC'@'localhost' (using password: NO)

I don't understand why I must be connected to the db to check if the values are ok to insert to mysql?

link|improve this question

2  
it gets quite explained on this function's manual page – Your Common Sense Jan 1 '11 at 16:23
@Col.Shrapnel: Just had a look. The manual does mention the warning and cause, but doesn't give a very sensible explanation - in particular about the charset issue. – mario Jan 1 '11 at 16:25
feedback

4 Answers

up vote 4 down vote accepted

This is because mysql_real_escape_string takes into account the current character set of the connection. As such, it needs a connection. :-)

If you don't want to manually set up a connection in advance, you could set the various MySQL runtime defaults within your .ini file.

However, if you're using your own database class (or simply the manual commands), it's often worth establishing the connection early in the lifetime of your script.

link|improve this answer
however, this feature almost never works, as almost noone using mysql_set_charset() function. – Your Common Sense Jan 1 '11 at 16:25
@Col. Shrapnel - Sad, yet probably true. There's a definite lack of knowledge of connection, character set and indeed table collation encodings. Still, such is life. :-) – middaparka Jan 1 '11 at 16:35
Well it doesn't matter for the 99% encodings anyway. Also, everyone is going (or, at least, says that they are going) towards prepared statements, so, it doesn't matter again – Your Common Sense Jan 1 '11 at 16:40
@Col. Shrapnel - Of course, I'm sure simply everyone will be using PDO by the end of next mumble mumble mumble. :-) – middaparka Jan 1 '11 at 16:42
feedback

Because escaping depends on the character set on the server. See mysql_real_escape_string in the MySQL manual (the PHP function of the same name is just a wrapper around this C function).

link|improve this answer
by client it is – Your Common Sense Jan 1 '11 at 16:26
feedback

you might find this article useful: addslashes dont call it a comeback

link|improve this answer
1  
Although it contains some smart topics, there are serious flaws too. – Your Common Sense Jan 1 '11 at 16:38
feedback

find and delete

mysql_close();

this function disconnect completely from MySQL server

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.