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.

link|improve this question

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

2 Answers

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

link|improve this answer
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 ... – migajek Oct 22 '09 at 16:48
feedback
up vote 0 down vote accepted

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

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.