when the default charset is utf8 then mysql sends 33 as
the charset index but it didn't map to utf8...
so i compared LoadIndexMap function in CharSetMap.cs to
CharsetMapping.java (jdbc)
there is no charset for index 17 in jdbc:
...
INDEX_TO_CHARSET[16] = (String) CHARSETMAP.get("hebrew");
INDEX_TO_CHARSET[18] = (String) CHARSETMAP.get("tis620");
...
bytefx:
...
indexMap.Add("hebrew");
indexMap.Add("tis620");
...
i don't know if there should be a charset for index 17,
but something should be in that arraylist:
...
indexMap.Add("hebrew");
indexMap.Add(null);
indexMap.Add("tis620");
...
Logged In: YES
user_id=837304
also, MySqlCommand.Connection is of type IDbConnection...
but should be MySqlConnection and IDbConnection should have
a private interface implementation...