ADO SQL Connection Closing

ben91686

New Member
Joined
Jun 23, 2011
Messages
2
Code:
Sub ConnectDB()
Dim sFileName       As String
sFileName = ActiveWorkbook.FullName
Set cnn = New ADODB.Connection
cnn.Open "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & sFileName _
    & ";Extended Properties=""Excel 8.0;HDR=Yes;IMEX=1"";"
End Sub
 
Sub ImportPri
 
.......
 
Call ConnectDB
 
sAreaName = Range("sAreaName").value
 
Qry = "SELECT RelativePriority, Status, ID, ProjectID, Tranche, DemandStartDate, DemandEndDate, Contingency, " _
        & "AnchorStatus, AnchorBucket, ProjectName, Predecessors, HardStopDate, ProjectStartDate, ProjectEndDate " _
        & "FROM [Prioritization$A10:AN1010] " _
        & "WHERE DevelopmentUnit = '" & sAreaName & "' " _
        & "ORDER BY [Prioritization$A10:AN1010].Order ASC"
 
Set rst = New ADODB.Recordset
rst.ActiveConnection = cnn
    Debug.Print cnn.State
rst.Open Qry, cnn, adOpenStatic, adLockReadOnly
 
.... 
 
End Sub

I keep getting the following error message on the last line of code... the connection for viewing your linked excel worksheet was lost

I've heard using ADO connections it's possible to inadvertently close the connection but the connection state is open on the line before. Anyone have any experience with this or can offer a possible solution?

Thanks!
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.

Forum statistics

Threads
1,214,620
Messages
6,120,559
Members
448,970
Latest member
kennimack

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