This is a discussion on Storing images into MySQL DB within the PHP Language forums, part of the PHP Programming Forums category; I'm currently trying to store images into my DB. But the collation used on my DB is big5, since ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I'm currently trying to store images into my DB. But the collation used
on my DB is big5, since my client wants this default encoding on their webpage. So to be able read the retreived data I have to use the command mysql_query('SET NAMES big5');. But when I do this, I'm not able to save the images to my DB. When I attempt to, I recieve an SQL Error stating: "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WƎ\\0G/-M3z...op\\07¿B4o^#Pu\\\'Z 揨Z2Qsf·' at line 1" If I changed the command to mysql_query('SET NAMES utf-8'); there are no errors and the images save properly. I suppose the encoding of the binary data in big5 contains some type of invalid character causing the SQL string to error. Anyone know how I can get around this? |
|
|||
|
steelghost wrote:
> I'm currently trying to store images into my DB. But the collation used > on my DB is big5, since my client wants this default encoding on their > webpage. > So to be able read the retreived data I have to use the command > mysql_query('SET NAMES big5');. > > But when I do this, I'm not able to save the images to my DB. When I > attempt to, I recieve an SQL Error stating: > > "You have an error in your SQL syntax; check the manual that > corresponds to your MySQL server version for the right syntax to use > near > 'WƎ\\0G/-M3z...op\\07¿B4o^#Pu\\\'Z 揨Z2Qsf·' > at line 1" > > If I changed the command to mysql_query('SET NAMES utf-8'); there are > no errors and the images save properly. > > I suppose the encoding of the binary data in big5 contains some type of > invalid character causing the SQL string to error. > > Anyone know how I can get around this? > Are you using mysql_real_escape_string on the image before storing it? -- ================== Remove the "x" from my email address Jerry Stuckle JDS Computer Training Corp. jstucklex@attglobal.net ================== |