SQLSetStmtAttrTest.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 StringLength;
  23. SQLCHAR Sqlstate[5];
  24. SQLINTEGER    NativeError;
  25. SQLSMALLINT   i, MsgLen;
  26. SQLCHAR   Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  27.        
  28. void SetStmtAttr_DisplayError(SQLSMALLINT HandleType, SQLHENV InputHandle);
  29. int SQLSetStmtAttrTest()
  30. {
  31.   /* SQL/CLI attributes */
  32.   /* SQL_ATTR_APP_PARAM_DESC */
  33.   char PtrValue1[13] = {'SQL_NULL_DESC'};
  34.   for (i=0; i < 1; i++) {
  35.   retcode = SQLSetStmtAttr(hstmt, SQL_ATTR_APP_PARAM_DESC, (void*)PtrValue1[i], sizeof(PtrValue1[i]));
  36.   if (retcode == SQL_INVALID_HANDLE)
  37.   ndbout << "Handle Type is SQL_HANDLE_STMT, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  38.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  39.     SetStmtAttr_DisplayError(SQL_HANDLE_STMT, hstmt);} 
  40.   /* SQL_ATTR_APP_ROW_DESC */
  41.   char PtrValue2[1] = {'SQL_NULL_DESC'}; /* ? */
  42.   for (i=0; i < 2; i++) {
  43.   retcode = SQLSetStmtAttr(hstmt, SQL_ATTR_APP_ROW_DESC, (void*)PtrValue2[i], sizeof(PtrValue2[i]));
  44.   if (retcode == SQL_INVALID_HANDLE)
  45.   ndbout << "Handle Type is SQL_HANDLE_STMT, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  46.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  47.     SetStmtAttr_DisplayError(SQL_HANDLE_STMT, hstmt);} 
  48.   /* SQL_ATTR_CURSOR_SCROLLABLE */
  49.   char PtrValue3[2] = {'SQL_NONSCROLLABLE', 'SQL_SCROLLABLE'}; /* ? */
  50.   for (i=0; i < 2; i++) {
  51.   retcode = SQLSetStmtAttr(hstmt, SQL_ATTR_CURSOR_SCROLLABLE, (void*)PtrValue3[i], sizeof(PtrValue3[i]));
  52.   if (retcode == SQL_INVALID_HANDLE)
  53.   ndbout << "Handle Type is SQL_HANDLE_STMT, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  54.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  55.     SetStmtAttr_DisplayError(SQL_HANDLE_STMT, hstmt);} 
  56.   /* SQL_ATTR_CURSOR_SENSITIVITY  */
  57.   char PtrValue4[3] = {'SQL_UNSPECIFIED', 'SQL_INSENSITIVE', 'SQL_SENSITIVE'}; /* ? */
  58.   for (i=0; i < 3; i++) {
  59.   retcode = SQLSetStmtAttr(hstmt, SQL_ATTR_CURSOR_SENSITIVITY, (void*)PtrValue4[i], sizeof(PtrValue4[i]));
  60.   if (retcode == SQL_INVALID_HANDLE)
  61.   ndbout << "Handle Type is SQL_HANDLE_STMT, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  62.   if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  63.     SetStmtAttr_DisplayError(SQL_HANDLE_STMT, hstmt);} 
  64.   return 0;
  65.  }
  66. void SetStmtAttr_DisplayError(SQLSMALLINT HandleType, SQLHENV InputHandle)
  67. {
  68.      i = 1;
  69.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  70.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  71.              &MsgLen)) != SQL_NO_DATA)                   {
  72.      ndbout << "the HandleType is:" << HandleType << endl;
  73.      ndbout << "the InputHandle is :" << InputHandle << endl;
  74.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  75.      i ++;
  76.                                                          }
  77. }