How to Run Multiple SQL Statements w/ the VFP ODBC Driver

Last reviewed: February 26, 1997
Article ID: Q149670
1.00 WINDOWS kbusage kbhowto kbinterop

The information in this article applies to:

  • Microsoft Visual FoxPro ODBC Driver, version 1.0

SUMMARY

To run multiple SQL statements with one SQL Pass-Through command, you can place a semicolon between the two SQL commands. This article demonstrates how to execute multiple SELECT statements from Microsoft Access for Windows 95 version 7.0 to a Visual FoxPro 3.0 table by using the Visual FoxPro ODBC driver.

MORE INFORMATION

This example selects data from the Customer and the Orders tables located in the Tastrade directory. It returns two sets of data and creates two tables in a Microsoft Access database.

Step-by-Step Example

  1. Using the Visual FoxPro ODBC Driver, create a data source to the Visual FoxPro Tastrade database located in the Samples\Mainsamp\Data directory.

    a. Start the OBDC Driver Manager.

    b. Click the Add button to add a driver.

    c. In the list of drivers, select the Microsoft Visual FoxPro Driver.

    d. In the data source dialog box, click the Visual FoxPro Database

          (.DBC) as the database type.
    

    e. Select Tastrade.dbc, located in the Samples\Mainsamp\Data directory.

  2. Start Microsoft Access version 7.0 and create a new database.

  3. In the Database window, select the Query tab to create an SQL Pass Through (SPT) query.

    a. Click the New button.

    b. In the New Query box, select Design View and click OK.

    c. In the Show Table box, click Close to close the dialog box (without

          adding a table or query). Note that you are now in Query Design view.
    

  4. On the Query menu, point to SQL Specific, and click Pass-Through.

  5. In the SQL Pass-Through window, type the following SQL statement, which will create two result sets:

          SELECT * FROM customer; SELECT * FROM orders
    

  6. Close the query and save it as Qrymultiple.

  7. You then need to create a MakeTable query based on the SPT query.

    a. In the Database window (Queries tab), click New.

    b. In the New Query box, select Design view and click OK.

    c. In the Show Table dialog box, click the Queries tab, select

          Qrymultiple, and then click Add.
    

    d. In the Query grid, select "*" in the Field row of the first column

          to include all the fields in the query.
    

    e. On the Query menu, click Make Table. In the Make table dialog, type

          the name Tbltest and ensure that the Current Database option is
          checked. Click OK.
    

    f. Close the query and save it as Test1.Save the query and close it.

  8. Open the Test1 query. A warning is displayed. Click OK.

  9. After the query is run, click the Tables tab. Note that two tables should have been created.


Additional reference words: 1.00 vfoxwin 3.00 3.00b
KBCategory: kbinterop kbusage kbhowto
KBSubcategory: FxinteropGeneral
Keywords : FxinteropGeneral kbhowto kbinterop kbusage
Version : 1.00
Platform : WINDOWS


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: February 26, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.