home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bde / snipit.pak / LSQL.C < prev    next >
C/C++ Source or Header  |  1997-07-23  |  3KB  |  89 lines

  1. // BDE - (C) Copyright 1995 by Borland International
  2.  
  3. // lsql.c
  4. #include "snipit.h"
  5.  
  6. //=====================================================================
  7. //  Function:
  8. //          LocalSQL();
  9. //
  10. //  Description:
  11. //          This example shows how to do local SQL on a dBASE table.
  12. //=====================================================================
  13. void
  14. LocalSQL (void)
  15. {
  16.     DBIResult       rslt;       // Return value from IDAPI
  17.     hDBIDb          hDb;        // Handle to the database
  18.     hDBICur         hCur;       // Handle to the answer table
  19.     hDBIStmt        hStmt;      // Handle to the SQL statement
  20.     CHAR            szQry[]     = { // The text of the SQL statement
  21.                 "SELECT name, phone, country \r\n"
  22.                 "FROM \"cust.dbf\" \r\n"
  23.                 "WHERE cust_no>4000"
  24.                                   };
  25.  
  26.     Screen("*** Local SQL Example ***\r\n");
  27.  
  28.     BREAK_IN_DEBUGGER();
  29.  
  30.     Screen("    Initializing IDAPI...");
  31.     if (InitAndConnect(&hDb) != DBIERR_NONE)
  32.     {                                        
  33.         Screen("\r\n*** End of Example ***");
  34.         return;
  35.     }
  36.                              
  37.     Screen("    Setting the database directory...");
  38.     rslt = DbiSetDirectory(hDb, (pCHAR) szTblDirectory);
  39.     ChkRslt(rslt, "SetDirectory");
  40.  
  41.     Screen("    Perform the following SQL statement on the table:\r\n");
  42.     Screen(szQry);
  43.  
  44.     Screen("\r\n    Prepare the SQL statement...");
  45.     rslt = DbiQPrepare(hDb, qrylangSQL, szQry, &hStmt);
  46.     if (ChkRslt(rslt, "QPrepare") != DBIERR_NONE)
  47.     {
  48.         CloseDbAndExit(&hDb);
  49.         Screen("\r\n*** End of Example ***");
  50.         return;
  51.     }
  52.  
  53.     Screen("    Execute the SQL statement...");
  54.     rslt = DbiQExec(hStmt, &hCur);
  55.     if (ChkRslt(rslt, "QExec") != DBIERR_NONE)
  56.     {
  57.         CloseDbAndExit(&hDb);
  58.         Screen("\r\n*** End of Example ***");
  59.         return;
  60.     }
  61.  
  62.     // Check for a valid cursor.
  63.     if (hCur)
  64.     {
  65.         Screen("    Display the first 10 records in the answer table...");
  66.         rslt = DbiSetToBegin(hCur);
  67.         ChkRslt(rslt, "SetToBegin");
  68.         DisplayTable(hCur, 10);
  69.  
  70.         Screen("\r\n    Close the cursor to the answer set...");
  71.         rslt = DbiCloseCursor(&hCur);
  72.         ChkRslt(rslt, "CloseCursor");
  73.     }
  74.     else
  75.     {
  76.         Screen("        Could not get cursor to the answer table");
  77.     }
  78.  
  79.     Screen("    Release memory allocated for the query...");
  80.     rslt = DbiQFree(&hStmt);
  81.     ChkRslt(rslt, "QryFree");
  82.  
  83.     Screen("    Close the database and exit IDAPI...");
  84.     CloseDbAndExit(&hDb);
  85.  
  86.     Screen("\r\n*** End of Example ***");
  87. }
  88.  
  89.