gpt4 book ai didi

vba - 使用 VBA 在 Excel 2010 中创建参数化 SQL 查询

转载 作者:行者123 更新时间:2023-12-04 22:49:57 24 4
gpt4 key购买 nike

我遇到了以下链接:

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 教程,但我发现的代码似乎有一半不起作用(可能是因为我对它的理解不够好)。

最佳答案

您可以使用 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

关于vba - 使用 VBA 在 Excel 2010 中创建参数化 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4806409/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com