SQLSetDescFieldTest.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. using namespace std;
  15. #define NAME_LEN 50
  16. #define PHONE_LEN 10
  17. #define SALES_PERSON_LEN 10
  18. #define STATUS_LEN 6
  19. #define SQL_MAXIMUM_MESSAGE_LENGTH 200
  20. SQLHSTMT    hstmt;
  21. SQLHDESC    hdesc;
  22. SQLSMALLINT RecNumber;
  23. SQLCHAR     szSalesPerson[SALES_PERSON_LEN];
  24. SQLCHAR     Sqlstate[5], Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  25. SQLINTEGER  NativeError;
  26. SQLRETURN retcode, SQLSTATEs;
  27. SQLINTEGER   ValuePtr1;
  28. SQLCHAR      ValuePtr2;
  29. SQLSMALLINT  ValuePtr3;
  30. SQLSMALLINT i, MsgLen;
  31. void SQLSetDescFieldTest_DisplayError(SQLSMALLINT HandleType, SQLHDESC InputHandle);
  32. int SQLSetDescFieldTest()
  33. {
  34.   /* hstmt */
  35.   // SQLPrepare a statement to select rows from the ORDERS Table. We can create the table and inside rows in 
  36.   // NDB by another program TestDirectSQL. In this test program(SQLGetDescRecTest),we only have three rows in
  37.   // table ORDERS
  38. /* Prepare the SQL statement with parameter markers. */
  39. retcode = SQLPrepare(hstmt, (SQLCHAR *)"SELECT ORDERID, CUSTID, OPENDATE, SALESPERSON, STATUS FROM ORDERS)", SQL_NTS);
  40. /* SELECT OrderID, CustID, OpenDate, SalesPerson from Table ORDERS */
  41. if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO) {
  42.   retcode = SQLExecute(hstmt);
  43. if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO) {
  44.   /* If FI(FieldIdentifer) is not one of the code values in Table 20 */
  45. retcode = SQLSetDescField(hdesc, 1, 9999, &ValuePtr1, 128);
  46. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  47.    SQLSetDescFieldTest_DisplayError(SQL_HANDLE_DESC, hdesc);
  48.   /* RecoderNumber is less than 1 and the value of the Type column in the Table is ITEM */
  49. retcode = SQLSetDescField(hdesc, -1, SQL_DESC_LENGTH, &ValuePtr1, 128);
  50. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  51.    SQLSetDescFieldTest_DisplayError(SQL_HANDLE_DESC, hdesc);
  52. }
  53. }
  54.   return 0;
  55.  }
  56. void SQLSetDescFieldTest_DisplayError(SQLSMALLINT HandleType, SQLHDESC InputHandle)
  57. {
  58.      i = 1;
  59.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  60.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  61.              &MsgLen)) != SQL_NO_DATA)                   {
  62.      ndbout << "the HandleType is:" << HandleType << endl;
  63.      ndbout << "the InputHandle is :" << InputHandle << endl;
  64.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  65.      i ++;
  66.                                                          }
  67. }