ODBC Connector for Windows - thread safe?

2004-07-21 Thread Silvio Lopes de Oliveira
Hello, I have MySQL ODBC Connector 3.51.08 for Windows. I downloaded the installation package from mysql.com. Is this driver thread-safe? If not, how do I compile a thread-safe version? The instructions I found online seem to refer to the Linux platform. Sincerely, Silvio Lopes de Oliveira

unicode + multithreaded = crash

2004-07-21 Thread Silvio Lopes de Oliveira
// (...) more MFC wizard stuff here } Thank you, Silvio Lopes de Oliveira Software Engineer -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Unicode characters become question marks

2004-06-02 Thread Silvio Lopes de Oliveira
MySQL Server: 4.1.1 alpha MySQL Control Center: 0.9.4 beta I am not sure whether this is a Control Center or MySQL Server problem, but here it goes: I have a database with MyISAM tables created using character set UTF-8. I have installed support for Chinese on my machine, and using MySQL

RE: Unicode characters become question marks

2004-06-02 Thread Silvio Lopes de Oliveira
: Wednesday, June 02, 2004 9:51 AM To: 'James Huang '; Silvio Lopes de Oliveira; '[EMAIL PROTECTED] ' Subject: RE: Unicode characters become question marks Can you display properly handle the Chinese characters? I would try to verify that the correct unicode code is being stored. -Original

RE: Unicode characters become question marks

2004-06-02 Thread Silvio Lopes de Oliveira
:09 AM To: Silvio Lopes de Oliveira; Victor Pendleton; 'James Huang '; '[EMAIL PROTECTED] ' Subject: RE: Unicode characters become question marks If you can type the character into the keyboard try this. SELECT IF(col1=chinese-character, 1, 0) Else try this from a java program if (rset.getString

RE: Unicode characters become question marks

2004-06-02 Thread Silvio Lopes de Oliveira
Lopes -Original Message- From: James Huang [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 10:18 AM To: [EMAIL PROTECTED]; Silvio Lopes de Oliveira; [EMAIL PROTECTED] Subject: RE: Unicode characters become question marks Victor, I'm positive the database is storing ?'s. You

RE: Unicode characters become question marks

2004-06-02 Thread Silvio Lopes de Oliveira
of ideas. Does ODBC Connector support the characterEncoding option used with the JDBC driver? S Lopes -Original Message- From: Mark Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 11:05 AM To: James Huang Cc: [EMAIL PROTECTED]; Silvio Lopes de Oliveira; [EMAIL PROTECTED

RE: Unicode characters become question marks

2004-06-02 Thread Silvio Lopes de Oliveira
To: Silvio Lopes de Oliveira; Victor Pendleton; 'James Huang '; '[EMAIL PROTECTED] ' Subject: RE: Unicode characters become question marks If you can type the character into the keyboard try this. SELECT IF(col1=chinese-character, 1, 0) Else try this from a java program if (rset.getString(col1

RE: Unicode characters become question marks

2004-06-02 Thread Silvio Lopes de Oliveira
- From: Jeremy March [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 02, 2004 2:53 PM To: [EMAIL PROTECTED] Cc: Silvio Lopes de Oliveira Subject: RE: Unicode characters become question marks You know, now I'm sure that the chars are getting stored as '?' as well. I tried the test you suggested