In fact, to have it working:
(based on the DbLinQ.MySQL.Example)
* inserting DbLinqProvider=Mysql was not accepted by MySqlConnection
string -> so i don't use it
* the VisualMetal generated file, with Provider=Mysql, was:
public MyDatabase (IDbConnection connection) : base
(connection)
I had to manually include the MySqlVendor parameter, thus having:
public MyDatabase (IDbConnection connection) : base
(connection, new DbLinq.MySql.MySqlVendor())
And it worked.
Can someone explain me if i did smthg wrong or if it is a bug ?
Thx,
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"DbLinq" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/dblinq?hl=en
-~----------~----~----~----~------~----~------~--~---