SQLSetDescRecTest.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 <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. SQLCHAR     Name;
  30. SQLINTEGER  LengthPtr;
  31. SQLSMALLINT i, MsgLen;
  32. SQLINTEGER  StringLengthPtr, IndicatorPtr;
  33. SQLPOINTER  DataPtr;
  34. void SQLSetDescRecTest_DisplayError(SQLSMALLINT HandleType, SQLHDESC InputHandle);
  35. int SQLSetDescRecTest()
  36. {
  37.   /*  hstmt  */
  38.   // SQLPrepare a statement to select rows from the ORDERS Table. We can create the table and inside rows in 
  39.   // NDB by program TestDirectSQL. In this test program(SQLSetDescRecTest),we only have three rows in
  40.   // table ORDERS
  41. /* Prepare the SQL statement with parameter markers. */
  42. retcode = SQLPrepare(hstmt, (SQLCHAR *)"SELECT ORDERID, CUSTID, OPENDATE, SALESPERSON, STATUS FROM ORDERS)", SQL_NTS);
  43. /* SELECT OrderID, CustID, OpenDate, SalesPerson from Table ORDERS */
  44. if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO) {
  45.   /* RecoderNumber is less than 1 */
  46. retcode = SQLSetDescRec(hdesc, -1, 1002, 1007, 1013, 1005, 1006, (void *)DataPtr, &StringLengthPtr, &IndicatorPtr);
  47. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  48.    SQLSetDescRecTest_DisplayError(SQL_HANDLE_DESC, hdesc);
  49.   /* RecoderNumber is greater than N, N be the value of the COUNT field of D, D be the allocated CLI */
  50.   /* descriptor area identified by DescriptorHandle */
  51. retcode = SQLSetDescRec(hdesc, 4, 1002, 1007, 1013, 1005, 1006, (void *)DataPtr, &StringLengthPtr, &IndicatorPtr);
  52. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  53.    SQLSetDescRecTest_DisplayError(SQL_HANDLE_DESC, hdesc);
  54. }
  55.   return 0;
  56.  }
  57. void SQLSetDescRecTest_DisplayError(SQLSMALLINT HandleType, SQLHDESC InputHandle)
  58. {
  59.      i = 1;
  60.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  61.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  62.              &MsgLen)) != SQL_NO_DATA)                   {
  63.      ndbout << "the HandleType is:" << HandleType << endl;
  64.      ndbout << "the InputHandle is :" << InputHandle << endl;
  65.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  66.      i ++;
  67.                                                          }
  68. }