SQLDriverConnectTest.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 <common.hpp>
  14. #include <string.h>
  15. using namespace std;
  16. SQLHDBC     driconn_hdbc;
  17. SQLHSTMT    driconn_hstmt;
  18. SQLHENV     driconn_henv;
  19. SQLHDESC    driconn_hdesc;
  20. SQLRETURN   driconn_retcode, driconn_SQLSTATEs;
  21. #define driconn_SQL_MAXIMUM_MESSAGE_LENGTH 200
  22. SQLCHAR driconn_Sqlstate[5];
  23. SQLINTEGER    driconn_NativeError;
  24. SQLSMALLINT   driconn_i, driconn_MsgLen;
  25. SQLCHAR   driconn_Msg[driconn_SQL_MAXIMUM_MESSAGE_LENGTH], driconn_ConnectIn[30];
  26.        
  27. void SQLDriverConnectTest_DisplayError_HDBC(SQLSMALLINT driconn_HandleType, SQLHDBC driconn_InputHandle);
  28. int SQLDriverConnectTest()
  29. {
  30.      ndbout << endl << "Start SQLDriverConnect Testing" << endl;
  31.   // Allocate An Environment Handle
  32.      driconn_retcode = SQLAllocHandle(SQL_HANDLE_ENV, SQL_NULL_HANDLE, &driconn_henv);
  33.   // Set the ODBC application Version to 3.x
  34.      driconn_retcode = SQLSetEnvAttr(driconn_henv, SQL_ATTR_ODBC_VERSION, (SQLPOINTER) SQL_OV_ODBC3, SQL_IS_UINTEGER);
  35.      if (driconn_retcode == SQL_SUCCESS || driconn_retcode == SQL_SUCCESS_WITH_INFO)
  36.        ndbout << "Set the ODBC application Version to 3.x" << endl;
  37.   // Allocate A Connection Handle
  38.      driconn_retcode = SQLAllocHandle(SQL_HANDLE_DBC, driconn_henv, &driconn_hdbc);
  39.      if (driconn_retcode == SQL_SUCCESS || driconn_retcode == SQL_SUCCESS_WITH_INFO)
  40.          ndbout << "Allocation A Connection Handle" << endl;
  41.   // Build A Connection String
  42.      strcpy((char*) driconn_ConnectIn, "DSN=ndb;UID=x;PWD=y");
  43.   // Connect to NDB
  44.      driconn_retcode = SQLDriverConnect(driconn_hdbc, NULL, driconn_ConnectIn, SQL_NTS, NULL, 0, NULL, SQL_DRIVER_NOPROMPT);
  45.      ndbout << "retcode = " << driconn_retcode << endl;
  46.      ndbout << "Before pringing out information about connection, we print out retcode = " << driconn_retcode << endl;
  47.      if (driconn_retcode == SQL_SUCCESS || driconn_retcode == SQL_SUCCESS_WITH_INFO)
  48.          ndbout << "Connected to NDB" << endl;
  49.      if (driconn_retcode == SQL_INVALID_HANDLE)
  50.  ndbout << "Handle Type is SQL_HANDLE_DBC, but string SQL_INVALID_HANDLE still appeared. Please check programm" << endl;
  51.      else 
  52.        { if (driconn_retcode == SQL_ERROR || driconn_retcode == SQL_SUCCESS_WITH_INFO)
  53.          SQLDriverConnectTest_DisplayError_HDBC(SQL_HANDLE_DBC, driconn_hdbc);}
  54.   // Free the Connection Handle
  55.   SQLFreeHandle(SQL_HANDLE_DBC, driconn_hdbc);
  56.   // Free the Environment Handle
  57.   SQLFreeHandle(SQL_HANDLE_ENV, driconn_henv);
  58.   return 0;
  59.  }
  60. void SQLDriverConnectTest_DisplayError_HDBC(SQLSMALLINT driconn_HandleType, SQLHDBC driconn_InputHandle)
  61. {
  62.      driconn_i = 1;
  63.      while ((driconn_SQLSTATEs = SQLGetDiagRec(driconn_HandleType, driconn_InputHandle, driconn_i, 
  64.              driconn_Sqlstate, &driconn_NativeError, driconn_Msg, sizeof(driconn_Msg), 
  65.              &driconn_MsgLen)) != SQL_NO_DATA)                   {
  66.      ndbout << "the HandleType is:" << driconn_HandleType << endl;
  67.      ndbout << "the InputHandle is :" << (long)driconn_InputHandle << endl;
  68.      ndbout << "the output state is:" << (char *)driconn_Sqlstate << endl; 
  69.      driconn_i ++;
  70.                                                          }
  71. }