我正在尝试使用Excel 2003并将其连接到SQL Server 2000以运行一些动态生成的SQL查询,这些查询最终会填充某些单元格。
我试图通过ADO通过VBA执行此操作(我尝试过2.8到2.0)但是在设置ActiveConnection
对象内的ADODB.Connection
变量时遇到错误。我需要很快解决这个问题......
请求的操作需要OLE DB Session对象,当前提供程序不支持该对象。
老实说,我不确定这个错误意味着什么,现在我不在乎。 如何才能使此连接成功,以便我可以运行查询?
这是我的VB代码:
Dim SQL As String, RetValue As String
SQL = " select top 1 DateTimeValue from SrcTable where x='value' " 'Not the real SQL
RetValue = ""
Dim RS As ADODB.Recordset
Dim Con As New ADODB.Connection
Dim Cmd As New ADODB.Command
Con.ConnectionString = "Provider=sqloledb;DRIVER=SQL Server;Data Source=Server\Instance;Initial Catalog=MyDB_DC;User Id=<UserName>;Password=<Password>;"
Con.CommandTimeout = (60 * 30)
Set Cmd.ActiveConnection = Con ''Error occurs here.
' I'm not sure if the rest is right. I've just coded it. Can't get past the line above.
Cmd.CommandText = SQL
Cmd.CommandType = adCmdText
Con.Open
Set RS = Cmd.Execute()
If Not RS.EOF Then
RetValue = RS(0).Value
Debug.Print "RetValue is: " & RetValue
End If
Con.Close
我想连接字符串有问题,但我已尝试了十几种变体。现在我只是在黑暗中拍摄......
注意/更新:为了让事情更加令人困惑,如果我谷歌上面的错误报价,我会收到很多回复,但似乎没什么关系,或者我不确定哪些信息是相关的....
我在“Microsoft Excel Objects”下的“Sheet1”中获得了VBA代码。我以前做过这个,但通常把东西放在一个模块中。这会有所作为吗?
答案 0 :(得分:14)
您尚未打开连接。我认为在将其分配给Command对象之前需要Con.Open
。
Con.ConnectionString = "Provider=sqloledb;DRIVER=SQL Server;Data Source=Server\Instance;Initial Catalog=MyDB_DC;User Id=<UserName>;Password=<Password>;"
Con.CommandTimeout = (60 * 30)
Con.Open
Set Cmd.ActiveConnection = Con 'Error occurs here.
Cmd.CommandText = SQL
Cmd.CommandType = adCmdText