The Connection object implicitly converted the
Connection string to lower case to perform the search
for keywords like "Data Source".
With Linux as MySQL host this might cause problems
because databases and tables are case sensitive.
This line needs to be deleted:
MySQLConnection.cs Line 307:
m_strConnectionString =
m_strConnectionString.ToLower();
This line needs to be changed:
MySQLConnection.cs Line 325:
intPos = strToSearch.ToLower().IndexOf(strKeyword);
The bug will be fixed in the next release.
Christoph