SQLPutDataTest.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 <sqlcli.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 NAME_LEN 50
  22. #define PHONE_LEN 50
  23. SQLCHAR      szName[NAME_LEN], szPhone[PHONE_LEN];
  24. SQLINTEGER   sCustID, cbName, cbAge, cbBirthday;
  25. SQLHSTMT     hstmt;
  26. SQLHENV      henv;
  27. SQLCHAR      szSalesPerson[SALES_PERSON_LEN];
  28. SQLCHAR      szStatus[STATUS_LEN], Sqlstate[5], Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  29. SQLINTEGER   cbOrderID = 0, cbCustID = 0, cbOpenDate = 0, cbSalesPerson = SQL_NTS, cbStatus = SQL_NTS, NativeError;
  30. SQLRETURN    retcode, SQLSTATEs;
  31. SQLSMALLINT     sOrderID;
  32. SQLSMALLINT  i, MsgLen;
  33. SQLCHAR      ColumnName;
  34. SQLSMALLINT  TargetValuePtr;
  35. SQLINTEGER   StrLen_or_Ind, DataPtr;
  36. SQLPOINTER   ValuePtrPtr;
  37. void DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle);
  38. int SQLPutDataTest()
  39. {
  40.   /* hstmt */
  41.   // We can create the table ORDERS and insert rows into ORDERS    
  42.   // NDB by program TestDirectSQL. In this test program, We only have three rows in table ORDERS
  43. /* Prepare the SQL statement with parameter markers. */
  44. retcode = SQLPrepare(hstmt, (SQLCHAR *)"SELECT ORDERID, CUSTID, OPENDATE, SALESPERSON, STATUS FROM ORDERS", SQL_NTS);
  45. if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO) {
  46.    retcode = SQLExecute(hstmt);
  47. if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO) {
  48.    retcode = SQLBindParameter(hstmt, 1, SQL_PARAM_INPUT, SQL_C_SSHORT, SQL_INTEGER, 16, 0, &sOrderID, 16, &cbOrderID);
  49. if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO) {
  50. while (retcode == SQL_NEED_DATA) {
  51.       retcode = SQLParamData(hstmt, &ValuePtrPtr);
  52.       if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO){
  53. retcode = SQLPutData(hstmt, &DataPtr, StrLen_or_Ind);
  54.          if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO){
  55.              DisplayError(SQL_HANDLE_STMT, hstmt);
  56.                                                                         }
  57.                                                                      }
  58.                                                                  }
  59.                                   }
  60. }
  61. }
  62.   return 0;
  63.  }
  64. void DisplayError(SQLSMALLINT HandleType, SQLHSTMT 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. }