SQLGetDescFieldTest.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 <NdbOut.hpp>
  14. #include <sqlext.h>
  15. #include <stdio.h>
  16. using namespace std;
  17. #define NAME_LEN 50
  18. #define PHONE_LEN 10
  19. #define SALES_PERSON_LEN 10
  20. #define STATUS_LEN 6
  21. #define SQL_MAXIMUM_MESSAGE_LENGTH 200
  22. SQLHSTMT    hstmt;
  23. SQLHDESC    hdesc;
  24. SQLSMALLINT RecNumber;
  25. SQLCHAR     szSalesPerson[SALES_PERSON_LEN];
  26. SQLCHAR     Sqlstate[5], Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  27. SQLINTEGER  NativeError;
  28. SQLRETURN retcode, SQLSTATEs;
  29. SQLINTEGER   ValuePtr1;
  30. SQLCHAR      ValuePtr2;
  31. SQLSMALLINT  ValuePtr3;
  32. SQLINTEGER  StringLengthPtr;
  33. SQLSMALLINT i, MsgLen;
  34. void SQLGetDescFieldTest_DisplayError(SQLSMALLINT HandleType, SQLHDESC InputHandle);
  35. int SQLGetDescFieldTest()
  36. {
  37.   /* If MBR is 'PS' and there is no prepared or execute statement associated with S*/
  38. retcode = SQLGetDescField(hdesc, 1, SQL_DESC_ARRAY_SIZE, &ValuePtr1, 128, &StringLengthPtr);
  39. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  40.    SQLGetDescFieldTest_DisplayError(SQL_HANDLE_DESC, hdesc);
  41.   /* hstmt */
  42.   // SQLPrepare a statement to select rows from the ORDERS Table. We can create the 
  43.   // table and inside rows in NDB by another program TestDirectSQL. In this test 
  44.   // program(SQLGetDescRecTest),we only have three rows in table ORDERS
  45. /* Prepare the SQL statement with parameter markers. */
  46. retcode = SQLPrepare(hstmt, (SQLCHAR *)"SELECT ORDERID, CUSTID, OPENDATE, SALESPERSON, STATUS FROM ORDERS)", SQL_NTS);
  47. /* SELECT OrderID, CustID, OpenDate, SalesPerson from Table ORDERS */
  48. if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO) {
  49.   /* If FI(FieldIdentifer) is not one of the code values in Table 20 */
  50. retcode = SQLGetDescField(hdesc, 1, 9999, &ValuePtr1, 128, &StringLengthPtr);
  51. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  52.    SQLGetDescFieldTest_DisplayError(SQL_HANDLE_DESC, hdesc);
  53.   /* RecoderNumber is less than 1 */
  54. retcode = SQLGetDescField(hdesc, -1, SQL_DESC_ARRAY_SIZE, &ValuePtr1, 128, &StringLengthPtr);
  55. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  56.    SQLGetDescFieldTest_DisplayError(SQL_HANDLE_DESC, hdesc);
  57.   /* RecoderNumber is greater than N, N be the value of the COUNT field of D, D be the allocated CLI */
  58.   /* descriptor area identified by DescriptorHandle */
  59. retcode = SQLGetDescField(hdesc, 4, SQL_DESC_ARRAY_SIZE, &ValuePtr1, 128, &StringLengthPtr);
  60. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  61.    SQLGetDescFieldTest_DisplayError(SQL_HANDLE_DESC, hdesc);
  62. }
  63.   return 0;
  64.  }
  65. void SQLGetDescFieldTest_DisplayError(SQLSMALLINT HandleType, SQLHDESC InputHandle)
  66. {
  67.      i = 1;
  68.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  69.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  70.              &MsgLen)) != SQL_NO_DATA)                   {
  71.      ndbout << "the HandleType is:" << HandleType << endl;
  72.      ndbout << "the InputHandle is :" << InputHandle << endl;
  73.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  74.      i ++;
  75.                                                          }
  76. }