SQLEndTranTest.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <common.h>
  14. using namespace std;
  15. #define SQL_MAXIMUM_MESSAGE_LENGTH 200
  16. SQLHDBC     hdbc;
  17. SQLHSTMT    hstmt;
  18. SQLHENV     henv;
  19. SQLHDESC    hdesc;
  20. SQLINTEGER  strangehandle;
  21. SQLRETURN   retcode, retcodeprepare, SQLSTATEs;
  22. SQLCHAR Sqlstate[5];
  23. SQLINTEGER  NativeError;
  24. SQLSMALLINT i, MsgLen;
  25. SQLSMALLINT Not_In_Table13;
  26. SQLCHAR   Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  27.        
  28. void SQLEndTran_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle);
  29. int SQLEndTranTest()
  30. {
  31.   strangehandle = 67;
  32.   /* hstmt */
  33.   // Execute a statement to retrieve rows from the Customers table. We can create the table and 
  34.   // inside rows into NDB by program TestDirectSQL 
  35.   // retcode = SQLPrepare(hstmt, (SQLCHAR*)"SELECT CustID, Name, Address, Phone FROM Customers", 56);
  36.   retcodeprepare = SQLPrepare(hstmt, (SQLCHAR*)"SELECT CustID, Name, Address, Phone FROM Customers", SQL_NTS);
  37.   if (retcodeprepare == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS) {
  38.   retcode = SQLExecute(hstmt);
  39.   if (retcode == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS) {
  40.   /*  HandleType is not in Table 13 */
  41.     Not_In_Table13 = 67;
  42.     SQLSTATEs = SQLEndTran(Not_In_Table13, (void*)strangehandle , SQL_COMMIT); 
  43.     if (SQLSTATEs == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO) {
  44.        i = 1;
  45.        while ((SQLSTATEs = SQLGetDiagRec(67, 67, i, 
  46.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  47.              &MsgLen)) != SQL_NO_DATA)                   {
  48.      ndbout << "the HandleType is:67" << endl;
  49.      ndbout << "the InputHandle is :67" << endl;
  50.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  51.      i ++;
  52.                                                          }
  53.  
  54.                                                                      }
  55.   /*  HandleType is STATEMENT HANDLE, if the value of Handle does not identity an allocated SQL_statement */
  56.     SQLSTATEs = SQLEndTran(SQL_HANDLE_STMT, hdbc, SQL_COMMIT); 
  57.     if (SQLSTATEs == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  58.         SQLEndTran_DisplayError(SQL_HANDLE_STMT, hstmt);
  59.   /* The value of CompletionType is not in Table 14 */
  60.     SQLSTATEs = SQLEndTran(SQL_HANDLE_STMT, hstmt, 8888); 
  61.     if (SQLSTATEs == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  62.         SQLEndTran_DisplayError(SQL_HANDLE_STMT, hstmt);
  63.                                                                    }
  64.                                                                    }
  65.   return 0;
  66.  }
  67. void SQLEndTran_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle)
  68. {
  69.      i = 1;
  70.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  71.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  72.              &MsgLen)) != SQL_NO_DATA)                   {
  73.      ndbout << "the HandleType is:" << HandleType << endl;
  74.      ndbout << "the InputHandle is :" << InputHandle << endl;
  75.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  76.      i ++;
  77.                                                          }
  78. }