SQLErrorTest.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. #if 0
  14. #include <NdbOut.hpp>
  15. #include <sqlcli.h>
  16. #include <stdio.h>
  17. using namespace std;
  18. #define NAME_LEN 50
  19. #define PHONE_LEN 10
  20. SQLHDBC     hdbc;
  21. SQLHSTMT    hstmt;
  22. SQLHENV     henv;
  23. SQLHDESC    hdesc;
  24. SQLRETURN   retcode, SQLSTATEs;
  25. SQLCHAR Sqlstate[5];
  26. SQLSMALLINT   i, MsgLen;
  27. SQLCHAR   Msg[SQL_MAXIMUM_MESSAGE_LENGTH];
  28. SQLCHAR      szName[NAME_LEN], szPhone[PHONE_LEN];
  29. SQLINTEGER   sCustID, cbName, cbCustID, cbPhone, NativeError;
  30. void DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle);
  31. int SQLBindColTest ()
  32. {
  33.   /* hstmt */
  34.   // Execute a statement to retrieve rows from the Customers table. We can create the table and inside rows in 
  35.   // NDB by another program TestDirectSQL. In this test program(SQLBindColTest),we only have three rows in
  36.   // table CUSTOMERS
  37. retcode = SQLExecDirect(hstmt, (SQLCHAR*)"SELECT CUSTID, NAME, PHONE FROM CUSTOMERS ORDER BY 2, 1, 3", SQL_NTS);
  38. if (retcode == SQL_SUCCESS || retcode == SQL_SUCCESS_WITH_INFO) {
  39. SQLBindCol(hstmt, 0, SQL_C_ULONG, &sCustID, 0, &cbCustID);
  40. while (TRUE) {
  41. retcode = SQLFetch(hstmt);
  42. if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  43.    DisplayError(SQL_HANDLE_STMT, hstmt);
  44.       
  45.              }
  46. SQLBindCol(hstmt, 4, SQL_C_ULONG, &sCustID, 0, &cbCustID);
  47. while (TRUE) {
  48. retcode = SQLFetch(hstmt);
  49. if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  50.    DisplayError(SQL_HANDLE_STMT, hstmt);
  51.       
  52.              }
  53. /* Bind columns 1, 2, and 3 */
  54. SQLBindCol(hstmt, 1, SQL_C_ULONG, &sCustID, 0, &cbCustID);
  55. SQLBindCol(hstmt, 2, SQL_C_CHAR, szName, NAME_LEN, &cbName);
  56. SQLBindCol(hstmt, 3, SQL_C_CHAR, szPhone, PHONE_LEN, &cbPhone);
  57. /* Fetch and print each row of data. On */
  58. /* an error, display a message and exit. */
  59. while (TRUE) {
  60. retcode = SQLFetch(hstmt);
  61. if (retcode == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
  62.    DisplayError(SQL_HANDLE_STMT, hstmt);
  63.       
  64.              }
  65.  }
  66.   return 0;
  67.  }
  68. void DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle)
  69. {
  70.      i = 1;
  71.      while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
  72.              Sqlstate, &NativeError, Msg, sizeof(Msg), 
  73.              &MsgLen)) != SQL_NO_DATA)                   {
  74.      ndbout << "the HandleType is:" << HandleType << endl;
  75.      ndbout << "the InputHandle is :" << InputHandle << endl;
  76.      ndbout << "the output state is:" << (char *)Sqlstate << endl; 
  77.      i ++;
  78.                                                          }
  79. }
  80. #endif