在Excel 2010中使用VBA创建带参数的SQL查询

4
我发现了以下链接:http://www.informit.com/guides/content.aspx?g=sqlserver&seqNum=135
其中,他们列出了相对简单的代码来查询Excel VBA中的SQL数据库。
' Declare the QueryTable object
Dim qt As QueryTable

' Set up the SQL Statement
sqlstring = "select au_fname, au_lname from authors"

' Set up the connection string, reference an ODBC connection
' There are several ways to do this
' Leave the name and password blank for NT authentication
connstring = _
 "ODBC;DSN=pubs;UID=;PWD=;Database=pubs"

' Now implement the connection, run the query, and add
' the results to the spreadsheet starting at row A1
With ActiveSheet.QueryTables.Add(Connection:=connstring, Destination:=Range("A1"), Sql:=sqlstring)
 .Refresh
End With
'Save and close the macro, and run it from the same menu you accessed in step 2.

这个代码可以正常运行。不过,我希望能将某个值作为变量返回,而不是将其导出到Excel表格中。

请问是否有人能够帮助我?我试着搜索了一些关于Excel VBA SQL的教程,但似乎其中一半的代码都不能正常工作(可能是因为我理解不够透彻)。

1个回答

4
您可以使用 ADO,例如:
''Reference: Microsft ActiveX Data Objects x.x Library
Dim cmd As New ADODB.Command
Dim cn As New ADODB.Connection
Dim param1 As New ADODB.Parameter
Dim rs As ADODB.Recordset

With cn
  .Provider = "SQLOLEDB"
  ''See also http://connectionsstrings.com
  .ConnectionString = "Data Source=Server;Initial Catalog=test;Trusted_Connection=Yes"
  .Open
End With

Set param1 = cmd.CreateParameter("@SiteID", adBigInt, adParamInput)
param1.Value = 1
cmd.Parameters.Append param1

With cmd
    .ActiveConnection = cn
    ''Stored procedure
    .CommandText = "spSiteInformation_Retrieve"
    .CommandType = adCmdStoredProc

    Set rs = .Execute
End With

For Each f In rs.Fields
  Debug.Print f.Name; " "; f
Next

rs.Close
Set rs = Nothing
cn.Close
Set cn = Nothing

进一步信息:http://w3schools.com

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接