transact.c
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /*
  4. ** TRANSACT.C - This is the ODBC sample driver code for
  5. ** processing transactions.
  6. **
  7. ** This code is furnished on an as-is basis as part of the ODBC SDK and is
  8. ** intended for example purposes only.
  9. **
  10. */
  11. #include "myodbc.h"
  12. // SQLC transaction control functions.
  13. RETCODE SQL_API SQLTransact(HENV henv,HDBC hdbc,UWORD fType)
  14. {
  15.   return SQL_SUCCESS;
  16. }