2 messages in com.mysql.lists.dotnetRe: Different results received using ...
FromSent OnAttachments
Jure Špik25 Nov 2004 08:04 
Jure Špik25 Nov 2004 08:44 
Subject:Re: Different results received using MyODBC vs. .NET Connector
From:Jure Špik (webd@carpediem.si)
Date:11/25/2004 08:44:00 AM
List:com.mysql.lists.dotnet

Solved. The unknown encoding was "windows 1250" encoding, so now I can convert data with

Encoding.UTF8.GetString( (Encoding.GetEncoding("windows-1250")).GetBytes(src) );

sucessfully.

The problem seems to lie with the fact that the Connector is returning iso-8859-1 data, while odbc returns windows-1250 data.

Don't know if this is a bug really, maybe just my non-understanding of ODBC.

Thanks for reading, Jure