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

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. #define SQL_MAXIMUM_MESSAGE_LENGTH 200
  15. using namespace std;
  16. SQLHDBC     hdbc;
  17. SQLHSTMT    hstmt;
  18. SQLHENV     henv;
  19. SQLHDESC    hdesc;
  20. SQLRETURN   retcode, SQLSTATEs;
  21. SQLCHAR Sqlstate[5];
  22. SQLINTEGER    NativeError;
  23. SQLSMALLINT   i, MsgLen;
  24. SQLCHAR   Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  25.        
  26. void CloseCursor_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle);
  27. int SQLCloseCursorTest()
  28. {
  29.   /* "If there is no open cursor associated with S, then an exception is raised: invalid cursor state"  How to test this case */
  30.   /* hstmt */
  31.   retcode = SQLCloseCursor(hstmt);
  32.   if (retcode == SQL_INVALID_HANDLE)
  33.   ndbout << "Handle Type is SQL_HANDLE_STMT, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  34.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  35.   CloseCursor_DisplayError(SQL_HANDLE_STMT, hstmt);
  36.   /* henv */
  37.   retcode = SQLCloseCursor(henv);
  38.   if (retcode == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS)
  39.   ndbout << "Handle Type is SQL_HANDLE_ENV, but string SQL_SUCCESS_WITH_INFO still appeared. Please check programm" << endl;
  40.   //  CloseCursor_DisplayError(SQL_HANDLE_ENV, henv);
  41.   /* hdbc */
  42.   retcode = SQLCloseCursor(hdbc);
  43.   if (retcode == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS)
  44.   ndbout << "Handle Type is SQL_HANDLE_DBC, but string SQL_SUCCESS_WITH_INFO still appeared. Please check programm" << endl;
  45.   //  CloseCursor_DisplayError(SQL_HANDLE_DBC, hdbc);
  46.   /* hdesc */
  47.   retcode = SQLCloseCursor(hdesc);
  48.   if (retcode == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS)
  49.   ndbout << "Handle Type is SQL_HANDLE_DESC, but string SQL_SUCCESS_WITH_INFO still appeared. Please check programm" << endl;
  50.   //  CloseCursor_DisplayError(SQL_HANDLE_DESC, hdesc);
  51.   return 0;
  52.  }
  53. void CloseCursor_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle)
  54. {
  55.      i = 1;
  56.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  57.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  58.              &MsgLen)) != SQL_NO_DATA)                   {
  59.      ndbout << "the HandleType is:" << HandleType << endl;
  60.      ndbout << "the InputHandle is :" << InputHandle << endl;
  61.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  62.      i ++;
  63.                                                          }
  64. }