Using Excel as an ODBC database

后端 未结 3 1807
粉色の甜心
粉色の甜心 2020-12-16 02:37

I\'d like to know, how to create a database table in Excel, so that it may be used with ODBC

I want to use ODBC, and I have two options, either MS Access or Excel,

相关标签:
3条回答
  • 2020-12-16 03:19

    I had a similar problem with some data recently. The way I managed to get around it was to select the data as a range A1:XY12345, then use the Define Name tool to name the range. When you connect to the Excel workbook via ODBC, this named range will appear as a "table," while ranges that you actually defined (per Excel) as a table, do not.

    0 讨论(0)
  • 2020-12-16 03:25

    There are several ways you can reference "table" data in an Excel workbook:

    • An entire worksheet.
    • A named range of cells on a worksheet.
    • An unnamed range of cells on a worksheet.

    They are explained in detail in the "Select Excel Data with Code" section of the Microsoft Knowledge Base article 257819.

    The most straightforward way is to keep the data on a separate sheet, put column names in the first row (starting in cell A1), and then have the actual data start in row 2, like this

    Excel

    To test, I created a User DSN named "odbcFromExcel" that pointed to that workbook...

    ODBC

    ...and then ran the following VBScript to test the connection:

    Option Explicit
    Dim con, rst, rowCount
    Set con = CreateObject("ADODB.Connection")
    con.Open "DSN=odbcFromExcel;"
    Set rst = CreateObject("ADODB.Recordset")
    rst.Open "SELECT * FROM [Sheet1$]", con
    rowCount = 0
    Do While Not rst.EOF
        rowCount = rowCount + 1
        If rowCount = 1 Then
            Wscript.Echo "Data row 1, rst(""LastName"").Value=""" &  rst("LastName").Value & """"
        End If
        rst.MoveNext
    Loop
    Wscript.Echo rowCount & " data rows found."
    rst.Close
    Set rst = Nothing
    con.Close
    Set con = Nothing
    

    The results were

    C:\Users\Gord\Documents\__tmp>cscript /nologo excelTest.vbs
    Data row 1, rst("LastName").Value="Thompson"
    10 data rows found.
    

    I hope that helps your Excel connection issue.

    As a final comment I have to say that if you are doing something that takes "several seconds" to do in Excel but "takes around 20-25 min" to do in Access then I strongly suspect that you are using Access in a very inefficient way, but that's a topic for another question (if you care to pursue it).

    EDIT

    If you want to INSERT data into an Excel workbook then that is possible, but be aware that the default setting for an Excel ODBC connection is "Read Only" so you have to click the "Options>>" button and clear that checkbox:

    readonly

    Once that's done, the following code...

    Option Explicit
    Dim con
    Set con = CreateObject("ADODB.Connection")
    con.Open "DSN=odbcFromExcel;"
    con.Execute "INSERT INTO [Sheet1$] (ID, LastName, FirstName) VALUES (11, 'Dumpty', 'Humpty')"
    con.Close
    Set con = Nothing
    Wscript.Echo "Done."
    

    ...will indeed append a new row in the Excel sheet with the data provided.

    However, that still doesn't address the problem of no "Tables" being available for selection when you point your "sniffer" app at an Excel ODBC DSN.

    One thing you could try would be to create an Excel sheet with column headings in row 1, then select those entire columns and create an Excel "Defined Name". Then, see if your "sniffer" app recognizes that as a "table" name that you can select.

    FWIW, I defined the name myTable as =Sheet1!$A:$C in my Excel workbook, and then my original code sort of worked when I used SELECT * FROM [myTable]:

    C:\Users\Gord\Documents\__tmp>cscript /nologo excelTest.vbs
    Data row 1, rst("LastName").Value="Thompson"
    1048576 data rows found.
    

    As you can see, it retrieved the first "record" correctly, but then it didn't recognize the end of the valid data and continued to read the ~1 million rows in the sheet.

    I doubt very much that I will be putting any more effort into this because I agree with the other comments that using Excel as an "ODBC database" is really not a very good idea.

    I strongly suggest that you try to find out why your earlier attempts to use Access were so unsatisfactory. As I said before, it sounds to me like something was doing a really bad job at interacting with Access.

    0 讨论(0)
  • 2020-12-16 03:27

    You just need to select as many as required columns from first row of your excel file and then give a name to it on the edit box left to the formula bar. Of course you give a name to each column of the file too!

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