Microsoft Knowledge Base

XL: SQLGetSchema Function Doesn't Return Table Names

Last reviewed: September 13, 1996
Article ID: Q124497
The information in this article applies to:
  • Microsoft Excel for Windows 95, versions 7.0, 7.0a
  • Microsoft Excel for Windows, versions 5.0, 5.0c
  • Microsoft Excel for the Macintosh, versions 5.0, 5.0a

SYMPTOMS

When you use either the SQLGetSchema function in a Visual Basic procedure or the SQL.GET.SCHEMA function in a version 4.0 macro, and you use the TypeNum (type_num for version 4.0 macro) value 4, the function may fail to return an array of table names.

CAUSE

This behavior occurs if you do not use the correct syntax for the QualifierText (qualifier_text for version 4.0 macro) argument, the database name and owner name for the database that contains the tables that you want to return. For example, the following statement returns an array that contains the #N/A! error value instead of an array that contains the table names in the DB1.MDB database:

   result = SQLGetSchema(conn, 4, "db1.mdb")

Additionally, if you use the SQLGetSchema function to return the name of the current database, you cannot use this variable as the QualifierText argument. This is because the SQLGet Schema function returns the current database name in square brackets, for example [c:\access\db1.mdb].

When you use the database name and the owner name for a given database in the SQLGETSCHEMA function, the database name and owner name must be enclosed in single quotation marks. Additionally, in the case of an Access database, the full path to the database file must be included.

WORKAROUNDS

To avoid receiving an error value or an error message when you return an array of table names located in a given database, use any of the following methods.

NOTE: In the following examples, result is defined as Variant data type (value returned should be an array) and conn is a variable representing the unique connection ID of the data source.

Method 1: To return a list of tables located in the DB1.MDB database use

          either of the following:

             result = SQLGetSchema(conn, 4, "'c:\access\db1.mdb'")

             -or-

             result = SQLGetSchema(conn, 4, "'c:\access\db1.mdb'.")

Method 2: To return a list of tables located in the current database:

             result = SQLGetSchema(conn, 4, "")

             -or-

             result = SQLGetSchema(conn, 4, ".")

             -or-

             ' If necessary to store current database name for future use:
             ' Return name of current database enclosed in brackets
             dbrackets = SQLGetSchema(conn, 7)

             ' Define variable database as name of current database
             ' without the brackets
             database = Mid(dbrackets, 2, Len(dbrackets) - 2)

             ' Use database name without brackets in SQLGetSchema function,
             ' enclosed in single quotation marks
             result = SQLGetSchema(conn, 4, "'" & database & "'")

MORE INFORMATION

You can use the SQLGetSchema Function in a Visual Basic procedure to return information about the structure of the data source on a particular connection. This function is available in the XLODBC.XLA add-in. Before you use the function, you must reference the add-in file in your Visual Basic Module using the References command from the Tools menu.

You can use the SQL.GET.SCHEMA function in a version 4.0 macro to return this same information. Before you use the function, you must load the ODBC add-in, XLODBC.XLA, using the Add-ins dialog box.

Visual Basic Code Examples

Microsoft provides examples of Visual Basic for Applications procedures for illustration only, without warranty either expressed or implied, including, but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. The Visual Basic procedures in this article are provided 'as is' and Microsoft does not guarantee that they can be used in all situations. While Microsoft support engineers can help explain the functionality of a particular macro, they will not modify these examples to provide added functionality, nor will they help you construct macros to meet your specific needs. If you have limited programming experience, you may want to consult one of the Microsoft Solution Providers. Solution Providers offer a wide range of fee-based services, including creating custom macros. For more information about Microsoft Solution Providers, call Microsoft Customer Information Service at (800) 426-9400.

The following Visual Basic procedure returns the name of the first table in the DB1.MDB database:

   Sub ReturnTables()

      Dim conn As Integer
      Dim result As Variant

      conn = sqlopen("DSN=access 2.0")

      result = SQLGetSchema(conn, 4, "'c:\access\db1.mdb'.")

      MsgBox result(1, 1)

      ' Close the connection to the database
      sqlclose (conn)

   End Sub

The following Visual Basic procedure returns the names of all of the tables in the current database, DB1.MDB, to Sheet1 in the current workbook, starting at cell A1:

   Sub ReturnTables()

      Dim conn As Integer
      Dim result As Variant
      Dim x As Integer

      conn = sqlopen("DSN=access 2.0;DBQ=c:\access\db1.mdb")
      result = SQLGetSchema(conn, 4, "")

      For x = 1 To UBound(result, 1)
         Worksheets("sheet1").Range("a1").Offset(x - 1, 0).Value = _
            result(x, 1)
      Next x

      'Close the connection to the database
      sqlclose (conn)

   End Sub

Microsoft Excel Version 4.0 Macro Code Example

Microsoft provides macro examples for illustration only, without warranty either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. This macro is provided as is and Microsoft in no way guaranties that the following code can be used in all situations and will not support modifications of the code to suit specific customer requirements.

The following Microsoft Excel version 4.0 macro returns an array of the names of all of the tables in the DB1.MDB database as the defined name "tables."

   A1: conn=SQL.OPEN("dsn=Access 2.0")
   A2: =SET.NAME("tables",SQL.GET.SCHEMA(conn,4,"'c:\access\db1.mdb'"))
   A3: =SQL.CLOSE(conn)
   A4: =RETURN()


REFERENCES

For more information about SQLGetSchema Function, choose the Search button in the Visual Basic Reference and type:

    SQLGetSchema Function

For more information about SQL.GET.SCHEMA, choose the Search button in the Microsoft Excel Macro Functions Help and type:

    SQL.GET.SCHEMA function


KBCategory: kbprg kbcode
KBSubcategory:

Additional reference words: 1.00 5.00 5.00a 5.00c 7.00 7.00a



THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 13, 1996
©1997 Microsoft Corporation. All rights reserved. Legal Notices.