(求助)用ADODC控件怎么样向SQL数据库插入数据
在做数据录入的时候
不知道怎么写
[CODE]
新建一个模块
代码为:
'声明变量
Public mycon As New ADODB.Connection
Public myres As New ADODB.Recordset
'连接数据库对象
Public Function openmycon()
'如果数据是打开的就把它关掉
If mycon.State = adStateOpen Then
mycon.Close
End If
'连接数据库的路径
mycon.Open "Provider=SQLOLEDB.1;Password=sa;Persist Security Info=True;User ID=sa;Initial Catalog=languang;Data Source=."
End Function
Public Function openmyres(ByVal sql As String)
If myres.State = adStateOpen Then
myres.Close
End If
With myres
' 游标 记录集在客户端打开
.CursorLocation = adUseClient
' 动态状态打开
.CursorType = adOpenDynamic
' 用SQL语句打开对象,且是用CMD的文本方法打开
.Open sql, mycon, , , adCmdText
End With
End Function
[/CODE]