这是在中为连接MySql中编写的一个类库。你可以使用这个类库直接 *** 作MySql数据库。
在使用这个类库之前,你必须安装
ODBC MYSQL 351
Driver
在这个库中有三个类:
ManipStringForMySQL: 此类修改SGBD的字符串
MySQL_Requettes: 发送请求
MySQL_Utils : 对SGBD数据进行测试
下面是使用此类库 *** 作MySql的一个例子
//对DataSet进行 *** 作 wwwyestar2000iTbulocomW7Cvs
Public Shared Function MyODBCDataset(ByVal ReqSQL As String, _
ByVal LaBase As String, ByVal Server As String, _
ByVal Password As String, ByVal User As String, _
ByVal NomDataSet As String) As DataSet
' Connexion à un server MySQL
'avec le Driver ODBC 351 avec requette qui renvoie un dataset
Dim MyConString As String = _
"DRIVER={MySQL ODBC 351 Driver};SERVER="
Server _
";DATABASE="
LaBase
";UID="
User _
";PASSWORD="
Password
";OPTION=3;"
Dim MyODBCConnexion As New OdbcConnection(MyConString)
Try
Dim ds As New DataSet()
Dim cmd As OdbcDataAdapter = New
OdbcDataAdapter(ReqSQL, MyConString)
Dim MyCommand As New OdbcCommand()
Dim MyDataReader As OdbcDataReader
cmdFill(ds, NomDataSet)
MyODBCConnexionClose()
Return ds
Catch MyOdbcException As OdbcException
'
HttpContextCurrentResponseWrite(MyOdbcExceptionToString)
Catch MyException As Exception
'
HttpContextCurrentResponseWrite(MyExceptionToString)
End Try
End Function
wwwyestar2000iTbulocomW7Cvs
//对函数的调用
Dim MonDatasetTemp As DataSet = MySQL_RequettesMyODBCDataset(SQL,
constantesODBCBase,
constantesODBCServer,
constantesODBCPwd,
constantesODBCUser,
"MonDataset")
以上就是关于.Net中 *** 作MySql数据库全部的内容,包括:.Net中 *** 作MySql数据库、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)