forked from treilly-nuodb/nuodb-php-pdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
php_pdo_nuodb_cpp_int.h
179 lines (167 loc) · 6.55 KB
/
php_pdo_nuodb_cpp_int.h
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/****************************************************************************
* Copyright (c) 2012 - 2014, NuoDB, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of NuoDB, Inc. nor the names of its contributors may
* be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL NUODB, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
****************************************************************************/
#ifndef PHP_PDO_NUODB_CPP_INT_H
#define PHP_PDO_NUODB_CPP_INT_H
#include "NuoDB.h"
/* derived from platform/version.h */
static const int NUODB_1_0_2_VERSION = 19;
static const int NUODB_1_2_0_VERSION = 25;
static const int NUODB_2_0_0_VERSION = 26;
static const int NUODB_2_0_1_VERSION = 27;
static const int NUODB_2_0_2_VERSION = 28;
static const int NUODB_2_0_3_VERSION = 29;
static const int NUODB_2_0_4_VERSION = 30;
static const int NUODB_2_0_5_VERSION = 31;
class PdoNuoDbStatement;
struct PdoNuoDbGeneratedKeyElement
{
char *columnName;
int columnIndex;
int columnKeyValue;
};
class PdoNuoDbGeneratedKeys
{
private:
int _qty;
PdoNuoDbGeneratedKeyElement *_keys;
public:
PdoNuoDbGeneratedKeys();
~PdoNuoDbGeneratedKeys();
void setKeys(NuoDB_ResultSet *rs);
int getIdValue();
int getIdValue(const char *seqName);
};
class PdoNuoDbHandle
{
private:
NuoDB_Connection * _con;
_pdo_dbh_t *_pdo_dbh;
int _txn_isolation_level;
int _driverMajorVersion;
int _driverMinorVersion;
SqlOptionArray * _opts;
SqlOption _opt_arr[PDO_NUODB_OPTIONS_ARR_SIZE];
pdo_nuodb_error_info einfo; /* NuoDB error information */
pdo_error_type sqlstate;
PdoNuoDbStatement * _last_stmt; /* will be NULL if the last
statement was closed. */
PdoNuoDbGeneratedKeys *_last_keys; /* pointer to array of
generated keys. */
void deleteOptions();
public:
PdoNuoDbHandle(pdo_dbh_t *pdo_dbh, SqlOptionArray * options);
~PdoNuoDbHandle();
_pdo_dbh_t *getPdoDbh();
int getDriverMajorVersion();
int getDriverMinorVersion();
int getEinfoLine();
const char *getEinfoFile();
int getEinfoErrcode();
const char *getEinfoErrmsg();
pdo_error_type *getSqlstate();
void setTransactionIsolation(int level);
int getTransactionIsolation();
void setEinfoLine(int line);
void setEinfoFile(const char *file);
void setEinfoErrcode(int errcode);
void setEinfoErrmsg(const char *errmsg);
void setSqlstate(const char *sqlstate);
void setLastStatement(PdoNuoDbStatement *lastStatement);
void setLastKeys(PdoNuoDbGeneratedKeys *lastKeys);
void setOptions(SqlOptionArray * options);
NuoDB_Connection * createConnection();
NuoDB_Connection * getConnection();
PdoNuoDbStatement * createStatement(pdo_stmt_t *pdo_stmt, char const * sql);
void closeConnection();
void commit();
void rollback();
int getLastId(const char *name);
void setAutoCommit(bool autoCommit);
const char *getNuoDBProductName();
const char *getNuoDBProductVersion();
};
class PdoNuoDbStatement
{
private:
PdoNuoDbHandle * _nuodbh;
pdo_stmt_t *_pdo_stmt;
pdo_nuodb_error_info einfo; /* NuoDB error information */
pdo_error_type sqlstate;
const char *_sql;
NuoDB_Statement * _stmt;
NuoDB_ResultSet * _rs;
public:
PdoNuoDbStatement(PdoNuoDbHandle * dbh, pdo_stmt_t *pdo_stmt);
~PdoNuoDbStatement();
NuoDB_Statement * createStatement(char const * sql);
PdoNuoDbHandle * getNuoDbHandle();
pdo_stmt_t *getPdoStmt();
int getEinfoLine();
const char *getEinfoFile();
int getEinfoErrcode();
const char *getEinfoErrmsg();
pdo_error_type *getSqlstate();
void setEinfoLine(int line);
void setEinfoFile(const char *file);
void setEinfoErrcode(int errcode);
void setEinfoErrmsg(const char *errmsg);
void setSqlstate(const char *sqlstate);
int execute();
bool hasResultSet();
bool next();
size_t getColumnCount();
char const * getColumnName(size_t column);
int getSqlType(size_t column);
char const * getString(size_t column);
void getInteger(size_t column, int **int_val);
bool getBoolean(size_t column, char **bool_val);
void getLong(size_t column, int64_t **long_val);
char const * getTimestamp(size_t column);
void getDate(size_t column, int64_t **date_val);
void getTime(size_t column, int64_t **time_val);
void getBlob(size_t column, char ** ptr, unsigned long * len, void * (*erealloc)(void *ptr, size_t size));
void getClob(size_t column, char ** ptr, unsigned long * len, void * (*erealloc)(void *ptr, size_t size));
size_t getNumberOfParameters();
int getGeneratedKeyLastId(const char *name);
void setInteger(size_t index, int value);
void setBoolean(size_t index, bool value);
void setString(size_t index, const char *value);
void setString(size_t index, const char *value, int length);
void setBytes(size_t index, const void *value, int length);
void setBlob(size_t index, const char *value, int len);
void setClob(size_t index, const char *value, int len);
};
#endif /* end of: PHP_PDO_NUODB_INT_CPP_H */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/