"Syntax error in FROM clause" Using ODBC 2.0 Drivers |
When you use version 2.0 of the Open Database Connectivity (ODBC) drivers with the products listed above, you may receive the following error message:
This problem will occur with the drivers listed below if the first character of a table's name is a number (for example, "1TABLE"):Syntax error in FROM clause
Microsoft Btrieve DriverThese drivers are shipped with the Microsoft ODBC Desktop Database Drivers Kit.
Microsoft dBASE Driver
Microsoft FoxPro Driver
Microsoft Paradox Driver
Microsoft Text Driver
The error is caused by the way the SQL SELECT statement is created in Microsoft Query. To illustrate the problem, assume you are using the dBASE ODBC driver to select data from a file called 1TABLE.DBF in the C:\TEST directory. The following SELECT statement is created by Microsoft Query to retrieve the data when you add a field name to the data pane:
SELECT '1test'. FIELD1 FROM c:\test\'1test.dbf' '1test'
NOTE: This select statement will cause the same error if you use it in the
SQLExecQuery macro function in a Visual Basic for Applications macro.
To work around this problem, do the following:
SELECT '1test'.FIELD1 FROM c:\test.'1test.dbf' '1test' SQL Query can't be represented graphically. Continue anyway?
Microsoft has confirmed this to be a problem in the ODBC Desktop Database Drivers Kit, version 2.0. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
For additional information, please see the following article(s) in the Microsoft Knowledge Base:
Q124319 BUG: Syntax Error When Using Qualified Table Name with Quotes
Additional query words: 2.00 Structured Query Language
Keywords : xlquery
Version : WINDOWS:1.0,5.0,5.0c; winnt:5.0
Platform : WINDOWS winnt
Issue type :
Technology :
|
Last Reviewed: October 1, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |