📄 module1.bas
字号:
Attribute VB_Name = "Adoconnection"
Public Function ExecSql(ByVal strSql As String)
With adoRs
If .State = adStateOpen Then
.Close
End If
.ActiveConnection = Aconnection
.Source = strSql
.CursorLocation = adUseClient
.CursorType = adOpenStatic
.LockType = adLockOptimistic
.Open
End With
End Function
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -