Microsoft Excelでストアドプロシージャを実行し、返されるすべてのデータを取得するにはどうすればよいですか?
これは、VBAでのADODB接続のジョブです。単純なSELECTクエリのサンプルコードへのリンクを次に示しますが、これはストアドプロシージャも同様に処理します。
http://www.ozgrid.com/forum/showthread.php?t=83016&page=1
重要な項目は、ADODB.Connection
、ADODB.Recordset
、およびデータベースに一致する接続文字列を宣言する必要があることです。接続を開いた後、次のような構文を使用してSQLステートメントを実行します(リンクから取得)。
With cnt
.CursorLocation = adUseClient
.Open stADO // stADO is the connection string.
.CommandTimeout = 0
Set rst = .Execute(stSQL)
End With
次に、Range.CopyFromRecordSet
を使用して、レコードセット(上記のrst
)から範囲にデータを移動します。
Excelの最新の化身についてはよくわかりませんが、2000年と2003年にできることは、ビューにアクセスして、そのデータをExcelシートに表示することだけでした。
ストアドプロシージャの主な利点は、結果をパラメーター化できることですが、そのためには、何らかのUIが必要であり、Excel内で最初に定義された後、プログラムでクエリ定義を変更する方法が必要です。これを行う方法は見つかりませんでしたが、ビューを使用することで、必要な機能を十分に提供できました。
このVBAは、@ Excellllの回答と非常によく似ており、自分の作業で効果的に使用しています。
この小さなユーティリティ関数を使用します。
Public Function IsEmptyRecordset(rs As Recordset) As Boolean
IsEmptyRecordset = ((rs.BOF = True) And (rs.EOF = True))
End Function
そして、ここに大きな機能があります(不器用に見える段落の配置についてお詫びします):
Option Explicit
Public Sub OpenConnection()
Dim conn As ADODB.Connection
Dim str As String
Dim cmd As ADODB.Command
Dim rs As ADODB.Recordset
Dim myPath
Dim fld
Dim i As Integer
On Error GoTo errlbl
'Open database connection
Set conn = New ADODB.Connection
'First, construct the connection string.
'NOTE: YOU CAN DO THIS WITH A STRING SPELLING OUT THE ENTIRE CONNECTION...
'conn.ConnectionString = _
' "Provider=Microsoft.Jet.OLEDB.4.0;" & _
' "Data Source=" & _
' myPath & "\ConnectionTest.mdb"
'...OR WITH AN ODBC CONNECTION YOU'VE ALREADY SET UP:
conn.ConnectionString = "DSN=myDSN"
conn.Open 'Here's where the connection is opened.
Debug.Print conn.ConnectionString 'This can be very handy to help debug!
Set rs = New ADODB.Recordset
'Construct string. This can "Select" statement constructed on-the-fly,
'str = "Select * from vwMyView order by Col1, Col2, Col3"
'or an "Execute" statement:
str = "exec uspMyStoredProc"
rs.Open str, conn, adOpenStatic, adLockReadOnly ‘recordset is opened here
If Not IsEmptyRecordset(rs) Then
rs.MoveFirst
'Populate the first row of the sheet with recordset’s field names
i = 0
For Each fld In rs.Fields
Sheet1.Cells(1, i + 1).Value = rs.Fields.Item(i).Name
i = i + 1
Next fld
'Populate the sheet with the data from the recordset
Sheet1.Range("A2").CopyFromRecordset rs
Else
MsgBox "Unable to open recordset, or unable to connect to database.", _
vbCritical, "Can't get requested records"
End If
'Cleanup
rs.Close
Set rs = Nothing
conn.Close
Set conn = Nothing
exitlbl:
Debug.Print "Error: " & Err.Number
If Err.Number = 0 Then
MsgBox "All data has been pulled and placed on Sheet1", vbOKOnly, "All Done."
End If
Exit Sub
errlbl:
MsgBox "Error #: " & Err.Number & ", Description: " & Err.Description, _ vbCritical, "Error in OpenConnection()"
Exit Sub
'Resume exitlbl
End Sub
お役に立てれば。