NDBT_SQLPrepare.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 <sqlext.h>
  15. #include <stdio.h>
  16. #include <NdbTest.hpp>
  17. #include <NdbMain.h>
  18. using namespace std;
  19. SQLHDBC     hdbc;
  20. SQLHSTMT    hstmt;
  21. SQLHENV     henv;
  22. SQLHDESC    hdesc;
  23. SQLRETURN   SQLPrepare_retcode, SQLAllocHandl_retcode, SQLSTATEs;
  24. SQLCHAR Sqlstate[5];
  25. SQLINTEGER    NativeError;
  26. SQLSMALLINT   i, MsgLen;
  27. SQLCHAR   Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  28.        
  29. void NDBT_SQLPrepare_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle);
  30.   // Execute a statement to retrieve rows from the Customers table. We can 
  31.   // create the table and inside rows into NDB by invoking SQLExecute() or 
  32.   // another program called TestDirectSQL
  33. int NDBT_SQLPrepare()
  34. {
  35.   // Allocate An Environment Handle
  36.      SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &henv);
  37.   // Allocate A Connection Handle
  38.      SQLAllocHandle(SQL_HANDLE_DBC, henv, &hdbc);
  39.   // Allocate A Connection Handle
  40.      SQLAllocHandle(SQL_HANDLE_DBC, henv, &hdbc);
  41.   // Connecte to database
  42.      SQLConnect(hdbc, (SQLCHAR*) "Sales", 5, (SQLCHAR*) "JohnS", 5, (SQLCHAR*) "Sesame", 6);
  43.   // Allocate A Statement Handle
  44.      SQLAllocHandl_retcode = SQLAllocHandle(SQL_HANDLE_STMT, hdbc, &hstmt);
  45.   /*  We can change the SQL statement in the SQLPrepare() function according to the requirement of Johnny.  */
  46.   /*  The order of the SQL statement could be CREATE, INSERT, UPDATE, SELECT, DELETE or another special SQL */
  47.   if (SQLAllocHandl_retcode == SQL_SUCCESS){
  48.   SQLPrepare_retcode = SQLPrepare(hstmt, (SQLCHAR*)"SELECT CustID, Name, Address, Phone FROM Customers", 56);
  49.   if (SQLPrepare_retcode == SQL_INVALID_HANDLE)
  50. ndbout << "Handle Type is SQL_HANDLE_STMT, but string SQL_INVALID_HANDLE and SQL_SUCCESS still appeared. Please check programm" << endl;
  51.   if (SQLPrepare_retcode == SQL_ERROR || SQLPrepare_retcode == SQL_SUCCESS_WITH_INFO)
  52.   NDBT_SQLPrepare_DisplayError(SQL_HANDLE_STMT, hstmt);
  53.   SQLExecute(hstmt);
  54.   SQLFreeHandle(SQL_HANDLE_STMT, hstmt);
  55.                                             }
  56.   // Disconnect from the database before free Connection Handle and Environment Handle
  57.      SQLDisconnect(hdbc);
  58.   // Free the Connection Handle
  59.      SQLFreeHandle(SQL_HANDLE_DBC, hdbc);
  60.   // Free the Environment Handle
  61.      SQLFreeHandle(SQL_HANDLE_ENV, henv);
  62.   return 0;
  63.  }
  64. void NDBT_SQLPrepare_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. }