Hello Simon,
In the datalinq configuration -> Advanced Tab , set the compatibility to "Mysql" .
Connection String for "MS SQL Server (ODBC)" template is something like this :
Provider=MSDASQL;
Driver={MySQL ODBC 5.3 Unicode Driver};
Server=[ServerName];
Database=[DataBaseName];
Uid=[UserName];
Pwd=[Password];
Port=[port];
Connection String for "Mysql" template looks like this :
Server=[ServerName];
Data Source=[DataBaseName];
Port=[port];
User Id=[UserName];
Password=[Password];
note that provider info is removed in this case
both template should work with a mysql database as soon as you set the compatibility to "mysql"
hope it helps,
Antoine
#XPression