home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Internet Business Development Kit / PRODUCT_CD.iso / sqlsvr / odbcsdk / samples / smpldrvr / transact.c < prev   
Encoding:
C/C++ Source or Header  |  1994-12-07  |  480 b   |  29 lines

  1. /*
  2. ** TRANSACT.C - This is the ODBC sample driver code for
  3. ** processing transactions.
  4. **
  5. **    This code is furnished on an as-is basis as part of the ODBC SDK and is
  6. **    intended for example purposes only.
  7. **
  8. */
  9.  
  10. //    -    -    -    -    -    -    -    -    -
  11.  
  12. #include "sample.h"
  13.  
  14. //    -    -    -    -    -    -    -    -    -
  15.  
  16. //    SQLC transaction control functions.
  17.  
  18. //    -    -    -    -    -    -    -    -    -
  19.  
  20. RETCODE SQL_API SQLTransact(
  21.     HENV    henv,
  22.     HDBC    hdbc,
  23.     UWORD    fType)
  24. {
  25.     return SQL_SUCCESS;
  26. }
  27.  
  28. //    -    -    -    -    -    -    -    -    -
  29.