SQLMoreResultsTest.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 SQLMoreResults_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle);
  27. int SQLMoreResultsTest()
  28. {
  29.   /* hstmt */
  30.   retcode = SQLMoreResults(hstmt);
  31.   if (retcode == SQL_INVALID_HANDLE)
  32.   ndbout << "Handle Type is SQL_HANDLE_STMT, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  33.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  34.   SQLMoreResults_DisplayError(SQL_HANDLE_STMT, hstmt);
  35.   /* henv */
  36.   retcode = SQLMoreResults(henv);
  37.   if (retcode == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS)
  38.   ndbout << "Handle Type is SQL_HANDLE_ENV, but string SQL_SUCCESS_WITH_INFO still appeared. Please check programm" << endl;
  39.   //  SQLMoreResults_DisplayError(SQL_HANDLE_ENV, henv);
  40.   /* hdbc */
  41.   retcode = SQLMoreResults(hdbc);
  42.   if (retcode == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS)
  43.   ndbout << "Handle Type is SQL_HANDLE_DBC, but string SQL_SUCCESS_WITH_INFO still appeared. Please check programm" << endl;
  44.   //  SQLMoreResults_DisplayError(SQL_HANDLE_DBC, hdbc);
  45.   /* hdesc */
  46.   retcode = SQLMoreResults(hdesc);
  47.   if (retcode == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS)
  48.   ndbout << "Handle Type is SQL_HANDLE_DESC, but string SQL_SUCCESS_WITH_INFO still appeared. Please check programm" << endl;
  49.   //  SQLMoreResults_DisplayError(SQL_HANDLE_DESC, hdesc);
  50.   return 0;
  51.  }
  52. void SQLMoreResults_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle)
  53. {
  54.      i = 1;
  55.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  56.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  57.              &MsgLen)) != SQL_NO_DATA)                   {
  58.      ndbout << "the HandleType is:" << HandleType << endl;
  59.      ndbout << "the InputHandle is :" << InputHandle << endl;
  60.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  61.      i ++;
  62.                                                          }
  63. }