vote up 1 vote down star

Hi, i connecting to a access database with php and adodb. Strings with characters like ® are saved in the database as ® . What can i do to store it correctly?

flag
Are you updating your database through recordsets (as "rs.update") or through command texts (as "INSERT INTO ...")? – Philippe Grondier Oct 28 '08 at 15:30
I'm updating with command texts. – krossner Oct 28 '08 at 15:55

4 Answers

vote up 0 vote down

Thanks for all suggestions. It was the frontend encoding.

link|flag
vote up 0 vote down

If you update with command texts, I would have a look at the way the commandText property of your connection is elaborated. I bet that your character update is done even before the INSERT/UPDATE string is sent to the database.

link|flag
vote up 0 vote down

@RoBOrg: Yes, but i didn't find a way to store it as utf8. The connection string is allready with charset=utf8 "DRIVER=Microsoft Access Driver (*.mdb);DBQ=something.mdb;UID=Administrator;Charset=utf8" and i didn't find any possibility in adodb to change the storing charset for access databases. I'm updating with command text. (I sent this as comment before, sorry.)

link|flag
vote up 1 vote down

Looks like you're passing in a UTF8 string but you're not storing it as UTF8. Change it one way or the other so they match up (preferably change your database to UTF8).

link|flag
Ok, but i didn't find a way to store it as utf8. The connection string is allready with charset=utf8 "DRIVER=Microsoft Access Driver (*.mdb);DBQ=something.mdb;UID=Administrator;Charset=utf8" and i didn't find any possibility in adodb to change the storing charset for access databases. – krossner Oct 28 '08 at 15:23

Your Answer

Get an OpenID
or

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