vote up 0 vote down star

Hi, I'm using Delphi 7 Personal. To access MySQL database I'm using libmysql.dll + very simple wrapper, which is good enough for me. Except one thing ... it doesn't seem to handle Utf8... is that possible somehow to pass Utf8 strings from libmysql to Delphi? Please keep in mind I'm not using commercial delphi, this means no ADO / dbExpress... ;)

Thanks in advance, m.

flag

Since UTF8 basically can be passed around as strings, have you tried them as such? – Jeroen Pluimers Oct 21 at 7:23

2 Answers

vote up 0 vote down

You can pass and receive Base64 data, see here the functions source: http://wi-fizzle.com/downloads/base64.sql

link|flag
unfortunately, the app I'm developing is kind of a simple MySQL manager, therefore it cannot depend on non-standard server-side functionality. Nor can it add own functions ... – michal Oct 22 at 16:48
vote up 0 vote down check

Ok finally what I did is querying "SET NAMES 'cp1250'", replacing the character set depending on the system default charset...

link|flag

Your Answer

Get an OpenID
or

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