I have updated my connectionstring but still I get the above error. I have posted more information here about this 'behavior': http://code.google.com/p/dblinq2007/issues/detail?id=213
Any idea of what to do? Kindly regards Rasmus On Mar 16, 3:20 pm, Jonathan Pryor <[email protected]> wrote: > 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.
