I use MySQL C API with Embacadero c++ without any problems in (ANSI). But when I try to send any wide character (UNICODE) like Arabic symbols, appears as not readable characters (garbage) in MySQL database. Because the SQL string that I send it by mysql_query function must be (const char *) and not (const wchar_t *).
for your notes: I'm talking about (INSERT statement) in MySQL.
thanks for any helps.