summaryrefslogtreecommitdiff
path: root/storage/ndb/test/odbc/client/SQLEndTranTest.cpp
blob: 87aa4e6f3a2af10f73f9c3da0510e50a90909ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* Copyright (C) 2003 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; version 2 of the License.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA */

#include <common.h>

using namespace std;

#define SQL_MAXIMUM_MESSAGE_LENGTH 200

SQLHDBC     hdbc;
SQLHSTMT    hstmt;
SQLHENV     henv;
SQLHDESC    hdesc;
SQLINTEGER  strangehandle;
SQLRETURN   retcode, retcodeprepare, SQLSTATEs;
SQLCHAR Sqlstate[5];

SQLINTEGER  NativeError;
SQLSMALLINT i, MsgLen;
SQLSMALLINT Not_In_Table13;

SQLCHAR   Msg[SQL_MAXIMUM_MESSAGE_LENGTH];

       
void SQLEndTran_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle);

int SQLEndTranTest()
{

  strangehandle = 67;
  /* hstmt */
  // Execute a statement to retrieve rows from the Customers table. We can create the table and 
  // inside rows into NDB by program TestDirectSQL 
  // retcode = SQLPrepare(hstmt, (SQLCHAR*)"SELECT CustID, Name, Address, Phone FROM Customers", 56);

  retcodeprepare = SQLPrepare(hstmt, (SQLCHAR*)"SELECT CustID, Name, Address, Phone FROM Customers", SQL_NTS);

  if (retcodeprepare == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS) {
  retcode = SQLExecute(hstmt);
  if (retcode == SQL_SUCCESS_WITH_INFO || retcode == SQL_SUCCESS) {

  /*  HandleType is not in Table 13 */
    Not_In_Table13 = 67;
    SQLSTATEs = SQLEndTran(Not_In_Table13, (void*)strangehandle , SQL_COMMIT); 
    if (SQLSTATEs == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO) {
       i = 1;
       while ((SQLSTATEs = SQLGetDiagRec(67, 67, i, 
             Sqlstate, &NativeError, Msg, sizeof(Msg), 
             &MsgLen)) != SQL_NO_DATA)                   {

     ndbout << "the HandleType is:67" << endl;
     ndbout << "the InputHandle is :67" << endl;
     ndbout << "the output state is:" << (char *)Sqlstate << endl; 

     i ++;
                                                         }
 
                                                                     }

  /*  HandleType is STATEMENT HANDLE, if the value of Handle does not identity an allocated SQL_statement */
    SQLSTATEs = SQLEndTran(SQL_HANDLE_STMT, hdbc, SQL_COMMIT); 
    if (SQLSTATEs == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
        SQLEndTran_DisplayError(SQL_HANDLE_STMT, hstmt);

  /* The value of CompletionType is not in Table 14 */
    SQLSTATEs = SQLEndTran(SQL_HANDLE_STMT, hstmt, 8888); 
    if (SQLSTATEs == SQL_ERROR || retcode == SQL_SUCCESS_WITH_INFO)
        SQLEndTran_DisplayError(SQL_HANDLE_STMT, hstmt);

                                                                   }

                                                                   }
  return 0;

 }


void SQLEndTran_DisplayError(SQLSMALLINT HandleType, SQLHSTMT InputHandle)
{
     i = 1;
     while ((SQLSTATEs = SQLGetDiagRec(HandleType, InputHandle, i, 
             Sqlstate, &NativeError, Msg, sizeof(Msg), 
             &MsgLen)) != SQL_NO_DATA)                   {

     ndbout << "the HandleType is:" << HandleType << endl;
     ndbout << "the InputHandle is :" << InputHandle << endl;
     ndbout << "the output state is:" << (char *)Sqlstate << endl; 

     i ++;
                                                         }

}