问题描述
我知道vs2005也就是2.0环境有个mysql的连接的dll文件但是只能运行在2.0里谁能介绍个1.1环境连接的办法或者给个dell
解决方案
解决方案二:
去官网找吧有1.1的DLL
解决方案三:
引用1楼NqIceCoffee的回复:
去官网找吧有1.1的DLL
解决方案四:
MySQLConnectionconn=null;try{stringconnstr="DataSource=MySQL;Password=root;UserID=root;Location=localhost";conn=newMySQLConnection(constr);conn.Open();stringquery="insertintotest.dbtablevalues(10,'disksidkfsdi','asdfaf','adsfasdf')";stringtmp=null;MySQLCommandcmd=newMySQLCommand(query,conn);for(inti=0;i<100000;i++){cmd.ExecuteNonQuery();}cmd.Dispose();conn.Close();query="select*fromtest.dbtable";MySQLCommandcmd2=newMySQLCommand(query,conn);conn.Open();MySQLDataReaderreader=cmd2.ExecuteReaderEx();while(reader.Read()){tmp=reader[0].ToString();tmp=reader[1].ToString();tmp=reader[2].ToString();tmp=reader[3].ToString();}conn.Close();query="deletefromtest.dbtable";MySQLCommandcmd3=newMySQLCommand(query,conn);conn.Open();cmd3.ExecuteNonQuery();}catch(Exceptionex){MessageBox.Show(ex.Message);}finally{conn.Close();}