SQLCopyDescTest.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 <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 ROWS 100
  22. #define DESC_LEN 50
  23. // Template for a row
  24. typedef struct {
  25.    SQLINTEGER   sPartID;
  26.    SQLINTEGER   cbPartID;
  27.    SQLUCHAR     szDescription[DESC_LENGTH];
  28.    SQLINTEGER   cbDescription;
  29.    REAL         sPrice;
  30.    SQLINTEGER   cbPrice;
  31. } PartsSource;
  32. PartsSource    rget[ROWS];          // rowset buffer
  33. SQLUSMALLINT   sts_ptr[ROWS];       // status pointer
  34. SQLHSTMT       hstmt0, hstmt1;
  35. SQLHDESC       hArd0, hIrd0, hApd1, hIpd1;
  36. SQLHSTMT    hstmt;
  37. SQLHDESC    hdesc;
  38. SQLSMALLINT RecNumber;
  39. SQLCHAR     szSalesPerson[SALES_PERSON_LEN];
  40. SQLCHAR     Sqlstate[5], Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  41. SQLINTEGER  NativeError;
  42. SQLRETURN retcode, SQLSTATEs;
  43. SQLINTEGER   ValuePtr1;
  44. SQLCHAR      ValuePtr2;
  45. SQLSMALLINT  ValuePtr3;
  46. SQLINTEGER  StringLengthPtr;
  47. SQLSMALLINT i, MsgLen;
  48. void DisplayError(SQLSMALLINT HandleType, SQLHDESC InputHandle);
  49. int SQLCopyDescTest ()
  50. {
  51.   // We can create the table and insert rows in NDB by program TestDirectSQL. 
  52.   // In this test program(SQLGetCopyRecTest),we only have three rows in table ORDERS
  53. // ARD and IRD of hstmt0
  54. SQLGetStmtAttr(hstmt0, SQL_ATTR_APP_ROW_DESC, &hArd0, 0, NULL);
  55. SQLGetStmtAttr(hstmt0, SQL_ATTR_IMP_ROW_DESC, &hIrd0, 0, NULL);
  56. // APD and IPD of hstmt1
  57. SQLGetStmtAttr(hstmt1, SQL_ATTR_APP_PARAM_DESC, &hApd1, 0, NULL);
  58. SQLGetStmtAttr(hstmt1, SQL_ATTR_IMP_PARAM_DESC, &hIpd1, 0, NULL);
  59. // Use row-wise binding on hstmt0 to fetch rows
  60. SQLSetStmtAttr(hstmt0, SQL_ATTR_ROW_BIND_TYPE, (SQLPOINTER) sizeof(PartsSource), 0);
  61. // Set rowset size for hstmt0
  62. SQLSetStmtAttr(hstmt0, SQL_ATTR_ROW_ARRAY_SIZE, (SQLPOINTER) ROWS, 0);
  63. // Execute a select statement
  64. SQLExecDirect(hstmt0, "SELECT PARTID, DESCRIPTION, PRICE FROM PARTS ORDER BY 3, 1, 2"",
  65.                SQL_NTS);
  66. // Bind
  67. SQLBindCol(hstmt0, 1, SQL_C_SLONG, rget[0].sPartID, 0, 
  68.    &rget[0].cbPartID);
  69. SQLBindCol(hstmt0, 2, SQL_C_CHAR, &rget[0].szDescription, DESC_LEN, 
  70.    &rget[0].cbDescription);
  71. SQLBindCol(hstmt0, 3, SQL_C_FLOAT, rget[0].sPrice, 
  72.    0, &rget[0].cbPrice);
  73.   // Perform parameter bindings on hstmt1. 
  74.   /* If SourceDeschandle does not identify an allocated CLI descriptor area */
  75.   retcode1 = SQLCopyDesc(hArd0, hApd1);
  76.   retcode2 = SQLCopyDesc(hIrd0, hIpd1);
  77. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  78.    DisplayError(SQL_HANDLE_DESC, hdesc);
  79.   /* If TargetDeschandle does not identify an allocated CLI descriptor area */
  80.   retcode = SQLCopyDesc(hdesc, );
  81.   if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  82.       DisplayError(SQL_HANDLE_DESC, hdesc);
  83.   return 0;
  84.  }
  85. void DisplayError(SQLSMALLINT HandleType, SQLHDESC InputHandle)
  86. {
  87.      i = 1;
  88.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  89.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  90.              &MsgLen)) != SQL_NO_DATA)                   {
  91.      ndbout << "the HandleType is:" << HandleType << endl;
  92.      ndbout << "the InputHandle is :" << InputHandle << endl;
  93.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  94.      i ++;
  95.                                                          }
  96. }