SQLFetchScrollTest.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 <stdio.h>
  15. #include <sqlext.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. SQLSMALLINT RecNumber;
  24. SQLCHAR     szSalesPerson[SALES_PERSON_LEN];
  25. SQLCHAR     Sqlstate[5], Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  26. SQLINTEGER  NativeError;
  27. SQLRETURN retcode, SQLSTATEs;
  28. SQLINTEGER   ValuePtr1;
  29. SQLCHAR      ValuePtr2;
  30. SQLSMALLINT  ValuePtr3;
  31. SQLSMALLINT i, MsgLen;
  32. void SFCT_DisplayError(SQLSMALLINT HandleType, SQLHDESC InputHandle);
  33. int SQLFetchScrollTest ()
  34. {
  35.   // FetchScroll a statement to retrieve rows from the Customers table. We can 
  36.   // create the table and insert rows in NDB by program TestDirectSQL 
  37.   /* There is no executed statement associated with the allocated SQL-statement identified by StatementHandle */
  38. retcode = SQLFetchScroll(hstmt, SQL_FETCH_NEXT, 1);
  39. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  40.    SFCT_DisplayError(SQL_HANDLE_DESC, hstmt);
  41.   /* FetchOrientation is not one of the code values in Table24 */
  42. retcode = SQLFetchScroll(hstmt, SQL_FETCH_NEXT, 8);
  43. if  (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  44.    SFCT_DisplayError(SQL_HANDLE_DESC, hstmt);
  45.   return 0;
  46.  }
  47. void SFCT_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle)
  48. {
  49.      i = 1;
  50.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  51.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  52.              &MsgLen)) != SQL_NO_DATA)                   {
  53.      ndbout << "the HandleType is:" << HandleType << endl;
  54.      ndbout << "the InputHandle is :" << InputHandle << endl;
  55.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  56.      i ++;
  57.                                                          }
  58. }