SQLSetEnvAttrTest.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. #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. SQLPOINTER  ValuePtr;
  22. SQLINTEGER SetEnvAttr_StringLength;
  23. SQLCHAR Sqlstate[5];
  24. SQLINTEGER    NativeError;
  25. SQLSMALLINT   i, MsgLen;
  26. SQLCHAR   Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  27.        
  28. void SetEnvAttr_DisplayError(SQLSMALLINT HandleType, SQLHENV InputHandle);
  29. int SQLSetEnvAttrTest()
  30. {
  31.   /* ODBC attributes */
  32.   /*
  33.   char PtrValue1[3] = {'SQL_CP_OFF', 'SQL_CP_ONE_DRIVER', 'SQL_CP_ONE_PER_HENV'};
  34.   for (i=0; i < 3; i++) {
  35.   retcode = SQLSetEnvAttr(henv, SQL_ATTR_CONNECTION_POOLING, (void*)PtrValue1[i], sizeof(PtrValue1[i]));
  36.   if (retcode == SQL_INVALID_HANDLE)
  37.   ndbout << "Handle Type is SQL_HANDLE_ENV, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  38.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  39.     SetEnvAttr_DisplayError(SQL_HANDLE_ENV, henv);}
  40.   char PtrValue2[2] = {'SQL_CP_STRICT_MATCH', 'SQL_CP_RELAXED_MATCH'};
  41.   for (i=0; i < 2; i++) {
  42.   retcode = SQLSetEnvAttr(henv, SQL_ATTR_CP_MATCH, (void*)PtrValue2[i], sizeof(PtrValue2[i]));
  43.   if (retcode == SQL_INVALID_HANDLE)
  44.   ndbout << "Handle Type is SQL_HANDLE_ENV, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  45.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  46.     SetEnvAttr_DisplayError(SQL_HANDLE_ENV, henv);} 
  47.   char PtrValue3[2] = {'SQL_OV_ODBC3', 'SQL_OV_ODBC2'};
  48.   for (i=0; i < 2; i++) {
  49.   retcode = SQLSetEnvAttr(henv, SQL_ATTR_ODBC_VERSION, (void*)PtrValue3[i], sizeof(PtrValue3[i]));
  50.   if (retcode == SQL_INVALID_HANDLE)
  51.   ndbout << "Handle Type is SQL_HANDLE_ENV, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  52.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  53.     SetEnvAttr_DisplayError(SQL_HANDLE_ENV, henv);} 
  54.   */
  55.   char PtrValue4[2] = {'SQL_TRUE', 'SQL_FALSE'};
  56.   for (i=0; i < 2; i++) {
  57.   retcode = SQLSetEnvAttr(henv, SQL_ATTR_OUTPUT_NTS, (void*)PtrValue4[i], sizeof(PtrValue4[i]));
  58.   if (retcode == SQL_INVALID_HANDLE)
  59.   ndbout << "Handle Type is SQL_HANDLE_ENV, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  60.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  61.     SetEnvAttr_DisplayError(SQL_HANDLE_ENV, henv);}
  62.   return 0;
  63.  }
  64. void SetEnvAttr_DisplayError(SQLSMALLINT HandleType, SQLHENV InputHandle)
  65. {
  66.      i = 1;
  67.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  68.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  69.              &MsgLen)) != SQL_NO_DATA)                   {
  70.      ndbout << "the HandleType is:" << HandleType << endl;
  71.      ndbout << "the InputHandle is :" << InputHandle << endl;
  72.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  73.      i ++;
  74.                                                          }
  75. }