.net - SSIS: Error --> Could not create a managed connection manager (VS 2010 - AdoNet MySql) -


i upgraded connector/c# visual studio , error above. seems fine, preview queries work fine in package upon execution error occurs.

  • before upgrading worked fine
  • i have deleted pervious connection manager , added totally new one
  • test connection succesfull

anyone same problem in past? there lot of speculation on 32/64 bit oses, though mysql official website states though installer says x86, means nothing (note: mysql installer 32 bit, install both 32 bit , 64 bit binaries.).

edit -> tried connecting manually through ssis script see if coded exception provided more info. unfortunatelly provided less

connectionmanager connman = dts.connections[7]; try {     connman.acquireconnection(dts.transaction); } catch (exception ex) {     dts.events.fireerror(-1, "elt-proc:", ex.message, "", 0); } 

found answer:

problem vs-2010, ssis, , latest ado .net connector / mysql visual studio.

i had installed latest connector/net 6.7.4 , mysql visual studio. noticed version in string @ connection properties 6.6.5.

so uninstalled 6.7.4 version , re-installed 6.6.5 version , worked charm.

i hope others well. took way time me find out.

important: error occur (on server side) if ssis server , visual studio dev computer have different connector/.net versions


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -