Query Tables (QueryTables) in Excel 2010 with VBA with VBA creating many connections

前端 未结 8 713
北荒
北荒 2021-02-06 12:49

I\'m following code I found on another site. Here\'s the basics of my code:

Dim SQL As String
Dim connString As String

connString = \"ODBC;DSN=DB01;UID=;PWD=;Da         


        
相关标签:
8条回答
  • 2021-02-06 13:23

    You should declare the connection as a separate object then you can close it once the database query is complete.

    I don't have the VBA IDE in front of me, so excuse me if there are any inaccuracies, but it should point you in the right direction.

    E.g.

    Dim SQL As String
    Dim con As connection
    
    Set con = New connection
    con.ConnectionString = "ODBC;DSN=DB01;UID=;PWD=;Database=MyDatabase"
    
    Worksheets("Received").QueryTables.Add(Connection:=con, Destination:=Worksheets("Received").Range("A5"), SQL:=SQL).Refresh
    
    con.close
    set con = nothing
    
    0 讨论(0)
  • 2021-02-06 13:24

    Try setting the QueryTable.MaintainConnection property to False...

    "Set MaintainConnection to True if the connection to the specified data source is to be maintained after the refresh and until the workbook is closed. The default value is True! And there doesn't seem to be a UI check box for this (Read/write Boolean)"

    0 讨论(0)
  • 2021-02-06 13:27

    You might ask yourself why you're creating a QueryTable every time in your code. There are reasons to do it, but it usually isn't necessary.

    QueryTables are more typically design-time objects. That is, you create your QueryTable once (through code or the UI) and the you Refresh the QueryTable to get updated data.

    If you need to change the underlying SQL statement, you have some options. You could set up Parameters that prompt for a value or get it from a cell. Another option for changing the SQL is changing it in code for the existing QueryTable.

    Sheet1.QueryTables(1).CommandText = "Select * FROM ...."
    Sheet1.QueryTables(1).Refresh
    

    You can select different columns or even different tables by changing CommandText. If it's a different database, you'll need a new connection, but that's pretty rare.

    I know that doesn't answer your question directly, but I think determining whether you really need to add the QueryTable each time is the first step.

    For more on Parameters, see http://dailydoseofexcel.com/archives/2004/12/13/parameters-in-excel-external-data-queries/ It's for 2003, so there are few inconsistencies with later versions. The basics are the same, you just may need to learn about the ListObject object if you're using 2007 or later.

    0 讨论(0)
  • 2021-02-06 13:31

    Still relevant years later...battling the same issue and this is the most helpful thread out there. My situation is a variant of the above and I will add my solution when I find it.

    I am using an Access database for my data source and establish a querytable on a new sheet. I then add two more new sheets and try to establish a querytable using the same connection on each of them, but to a different Access table. The first querytable works just fine and I use .QueryTables(1).Delete and setting the querytable object to Nothing to make it disconnected.

    However, the next sheet fails on establishing a new querytable using the same connection, which was not closed. I suspect (and will add the solution below) that I need to drop the connection before deleting the querytable. Rasmus' code above looks like the likely solution.

    0 讨论(0)
  • 2021-02-06 13:33

    If you want to delete if right after refresh you should do the refresh not in the background (using first parameter -> Refresh False) so that you have proper sequence of actions

    0 讨论(0)
  • 2021-02-06 13:38

    I had the same issue. The previous answer while a definite step in the right direction is a PITA.

    It did however allow me to refine my search and the winner is...

    http://msdn.microsoft.com/en-us/library/bb213491(v=office.12).aspx

    i.e. for your existing QueryTable Object just do this:

    .MaintainConnection = False
    

    Works ever so swell. No more Access DB lock file after the data is refreshed.

    0 讨论(0)
提交回复
热议问题