On Tue, 2010-03-16 at 02:12 -0700, Rasmus Christiansen wrote:
> Have anyu of you experienced anything similiar when using DbLinq for
> MySQL?
> I build the code successfully, but when executing I get the following
> error.
Presumably the "following error" is the error in the subject...
...
> Here is my connectionstring:
> server=yyy;database=xxx;Uid=aaa;Pwd=bbb;MultipleActiveResultSets=True
>
> Should it look any different?
Yes. You also need to include "DbLinqProvider=MySql" in the connection
string. If no DbLinqProvider is specified, and no IVendor
implementation is provided to the DataContext constructor, then
SqlServer is used as the default; thus, you need a connection string:
DbLinqProvider=MySql; Server=yyy; Datbase=xxx; Uid=aaa; Pwd=Bbb;
MultipleActiveResultSets=True
- Jon
--
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.