ADO Inconsistent Behaviour

marley77

New Member
Joined
Dec 10, 2013
Messages
27
I am building a workbook that needs to import data from 1) external csv file, 2) external Excel file, 3) in addition l then need to run a query within the workbook on the imported data. This needs to work in both 32bit and 64bit so l believe l am restricted to the Microsoft.ACE.OLEDB.12.0 driver. The 'bare bones' code below works fine for several rapid fire iterations but then will stop working. If l use early binding the workbook gets closed, if l use late binding the error is highlighted at the cn.open line. Trial & error testing seems to suggest that the problem materialises afetr running the query several times for either of the Excel queries, then running the CSVTXT query, then going back to run either of the Excel queries. I have been doing much 'Googling' and have been working on this for 2 or 3 days so far and just cannot find the right answer :( Any help would really be greatly appreciated.

Below are 3 'Example' procedures that l run in quick succession for testing purposes, followed by the procedures to for CSVTXT files and Excel files.
VBA Code:
Sub Example_SQL_CSVTXT_GetDataWriteToTarget_FromEXTERNAL_CSVTXT()
   
    Dim sSourceFullFilepath As String
    Dim rngDataTarget As Range
    Dim sSQLQuery As String
   
'   Define variables
    sSQLQuery = "SELECT * FROM [xxxMB_F03116020171005.csv];"
    sSourceFullFilepath = ThisWorkbook.Path & "\SourceFiles\" & "xxxMB_F03116020171005.csv"
    Set rngDataTarget = ThisWorkbook.Worksheets(Target.Name).Range("A1")
   
'   Execute the called procedure
    Call SQL_CSVTXT_GetData_WriteToTarget(sSQLQuery, sSourceFullFilepath, rngDataTarget)
   
    Set rngDataTarget = Nothing
   
End Sub

Sub Example_SQL_EXCEL_GetDataWriteToTarget_FromTHISWORKBOOK()
   
    Dim sSourceFullFilepath As String
    Dim rngDataTarget As Range
    Dim sSQLQuery As String
   
'   Define variables
    sSQLQuery = "SELECT * FROM [myExcelDataInternal$];"
    sSourceFullFilepath = ThisWorkbook.FullName
    Set rngDataTarget = ThisWorkbook.Worksheets(Target.Name).Range("A1")
       
'   Execute the called procedure
    Call SQL_EXCEL_GetData_WriteToTarget(sSQLQuery, sSourceFullFilepath, rngDataTarget)
   
    Set rngDataTarget = Nothing
   
End Sub

Sub Example_SQL_EXCEL_GetDataWriteToTarget_FromEXTERNALEXCELFILE()
   
    Dim sSourceFullFilepath As String
    Dim rngDataTarget As Range
    Dim sSQLQuery As String
   
'   Define variables
    sSQLQuery = "SELECT * FROM [myExcelData$];"
    sSourceFullFilepath = ThisWorkbook.Path & "\SourceFiles\" & "xxxMB_F_xlsb.xlsb"
    Set rngDataTarget = ThisWorkbook.Worksheets(Target.Name).Range("A1")
       
'   Execute the called procedure
    Call SQL_EXCEL_GetData_WriteToTarget(sSQLQuery, sSourceFullFilepath, rngDataTarget)
   
    Set rngDataTarget = Nothing
   
End Sub

Sub SQL_CSVTXT_GetData_WriteToTarget(sSQL As String, sDonorFile As String, rngDestination As Range)

    On Error GoTo myerrortrap
   
'   EARLY BINDING
    Dim cn As ADODB.Connection
    Dim rs As ADODB.Recordset
    Set cn = New ADODB.Connection
    Set rs = New ADODB.Recordset
   
'   Constants (required for late binding)
    Const adOpenForwardOnly = 0
    Const adLockReadOnly = 1
    Const adCmdText = &H1
   
'   Other variables
    Dim sCONSTRING As String
    Dim sPathOnly As String
   
'   Define the connection string
    sPathOnly = Left(sDonorFile, InStrRev(sDonorFile, "\"))
    sCONSTRING = "Data Source=" & sPathOnly & ";" & "Extended Properties=""text;HDR=No;FMT=Delimited;"""

'   Make connection to the source
    With cn
        .Provider = "Microsoft.ACE.OLEDB.12.0"
        .connectionString = sCONSTRING
        .Open
    End With
   
'   Build the recordset (change arguments for 'CursorType' & 'Lock Type' if you need to move through or manipulate the recordset)
    rs.Open Source:=sSQL, ActiveConnection:=cn, CursorType:=adOpenForwardOnly, LockType:=adLockReadOnly, Options:=adCmdText
   
'   Write recordset to destination
    rngDestination.CopyFromRecordset rs
   
'   Close connection and recordset
    rs.Close
    Set rs = Nothing
    cn.Close
    Set cn = Nothing
   
    Exit Sub

myerrortrap:
    Debug.Print Err.Source & ", " & Err.Description

End Sub
   
Sub SQL_EXCEL_GetData_WriteToTarget(sSQL As String, sDonorFile As String, rngDestination As Range)

     On Error GoTo myerrortrap
    
'   EARLY BINDING
    Dim cn As ADODB.Connection
    Dim rs As ADODB.Recordset
    Set cn = New ADODB.Connection
    Set rs = New ADODB.Recordset

'   Constants (required for late binding)
    Const adOpenForwardOnly = 0
    Const adLockReadOnly = 1
    Const adCmdText = &H1
   
'   Other variables
    Dim sCONSTRING As String
   
'   Define the connection string
    sCONSTRING = "Data Source=" & sDonorFile & ";" & "Extended Properties=""Excel 12.0;HDR=NO;"""

'   Make connection to the source
    With cn
        .Provider = "Microsoft.ACE.OLEDB.12.0"
        .connectionString = sCONSTRING
        .Open
    End With
   
'   Build the recordset
    rs.Open Source:=sSQL, ActiveConnection:=cn, CursorType:=adOpenForwardOnly, LockType:=adLockReadOnly

'   Write recordset to destination
    rngDestination.CopyFromRecordset rs
   
'   Close connection and recordset
    rs.Close
    Set rs = Nothing
    cn.Close
    Set cn = Nothing
   
    Exit Sub

myerrortrap:
    Debug.Print Err.Source & ", " & Err.Description

End Sub
 
Last edited by a moderator:

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Assuming your workbook is an xlsb format, I can't see anything wrong with the code per se, but you should be aware that using ADO on an open workbook is not recommended due to memory leaks (which may be the cause of your problem).
 
Upvote 0
Assuming your workbook is an xlsb format, I can't see anything wrong with the code per se, but you should be aware that using ADO on an open workbook is not recommended due to memory leaks (which may be the cause of your problem).
Many thanks for the prompt response.
I originally thought that might be the case but if l run numerous queries on an external excel file, then numerous on an external txtcsv file, then go back and run again on an external excel file l still get the problem. IMO it seems like sometimes the CSVTXT connection does not close properly or quickly enough. If l close Excel and re-open the file everything works again. My Google research mentions things like 'Pooling' so that the driver responds more quickly. Being honest it is a bit beyond my understanding.
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,205
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top