R
Robert Crandal
My VBA code which makes an ADO connection to an Excel 2007
file typically looks like this:
'===========================================================
' Create the Recorset object and run the query.
szSQL = "SELECT * FROM [Sheet1$A1:A1]"
Set rsData = New ADODB.Recordset
rsData.Open szSQL, szConnect, adOpenForwardOnly, adLockReadOnly, adCmdText
' Extract data from rsData recordset object
rsData.Close
Set rsData = Nothing
'==========================================================
So, my question is, once I have an open ADO connection, is there any way to
make
another SQL query before running the "rsData.Close" command?? Or, do I
simply
need to close the connection and then run the Open command with a new
"szSQL"
string command??
thanks!
file typically looks like this:
'===========================================================
' Create the Recorset object and run the query.
szSQL = "SELECT * FROM [Sheet1$A1:A1]"
Set rsData = New ADODB.Recordset
rsData.Open szSQL, szConnect, adOpenForwardOnly, adLockReadOnly, adCmdText
' Extract data from rsData recordset object
rsData.Close
Set rsData = Nothing
'==========================================================
So, my question is, once I have an open ADO connection, is there any way to
make
another SQL query before running the "rsData.Close" command?? Or, do I
simply
need to close the connection and then run the Open command with a new
"szSQL"
string command??
thanks!