node-firebird 2.3.2 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +163 -31
- package/lib/index.d.ts +12 -0
- package/lib/pool.js +10 -1
- package/lib/srp.js +12 -1
- package/lib/wire/connection.js +39 -7
- package/lib/wire/socket.js +13 -1
- package/lib/wire/xsqlvar.js +69 -6
- package/package.json +1 -1
- package/poc/node_modules/.package-lock.json +14 -0
- package/poc/node_modules/node-firebird/.eslintrc.json +12 -0
- package/poc/node_modules/node-firebird/.github/workflows/codeql.yml +76 -0
- package/poc/node_modules/node-firebird/.github/workflows/node.js.yml +95 -0
- package/poc/node_modules/node-firebird/BIGINT_MIGRATION.md +374 -0
- package/poc/node_modules/node-firebird/CI_DEBUGGING_GUIDE.md +148 -0
- package/poc/node_modules/node-firebird/ENCRYPTION_CALLBACK.md +152 -0
- package/poc/node_modules/node-firebird/FIREBIRD_LOG_FEATURE.md +145 -0
- package/poc/node_modules/node-firebird/LICENSE +373 -0
- package/poc/node_modules/node-firebird/MINIMAL_CHANGES_SUMMARY.md +136 -0
- package/poc/node_modules/node-firebird/PR_SUMMARY.md +96 -0
- package/poc/node_modules/node-firebird/README.md +794 -0
- package/poc/node_modules/node-firebird/ROADMAP.md +223 -0
- package/poc/node_modules/node-firebird/SRP_PROTOCOL.md +482 -0
- package/poc/node_modules/node-firebird/lib/callback.js +38 -0
- package/poc/node_modules/node-firebird/lib/firebird.msg +0 -0
- package/poc/node_modules/node-firebird/lib/firebird.msg.json +1371 -0
- package/poc/node_modules/node-firebird/lib/gdscodes.d.ts +1524 -0
- package/poc/node_modules/node-firebird/lib/gdscodes.js +1531 -0
- package/poc/node_modules/node-firebird/lib/ieee754-decimal.js +500 -0
- package/poc/node_modules/node-firebird/lib/index.d.ts +316 -0
- package/poc/node_modules/node-firebird/lib/index.js +128 -0
- package/poc/node_modules/node-firebird/lib/messages.js +162 -0
- package/poc/node_modules/node-firebird/lib/pool.js +108 -0
- package/poc/node_modules/node-firebird/lib/srp.js +299 -0
- package/poc/node_modules/node-firebird/lib/unix-crypt.js +343 -0
- package/poc/node_modules/node-firebird/lib/utils.js +164 -0
- package/poc/node_modules/node-firebird/lib/wire/connection.js +2510 -0
- package/poc/node_modules/node-firebird/lib/wire/const.js +807 -0
- package/poc/node_modules/node-firebird/lib/wire/database.js +378 -0
- package/poc/node_modules/node-firebird/lib/wire/eventConnection.js +118 -0
- package/poc/node_modules/node-firebird/lib/wire/fbEventManager.js +326 -0
- package/poc/node_modules/node-firebird/lib/wire/serialize.js +588 -0
- package/poc/node_modules/node-firebird/lib/wire/service.js +1058 -0
- package/poc/node_modules/node-firebird/lib/wire/socket.js +175 -0
- package/poc/node_modules/node-firebird/lib/wire/statement.js +48 -0
- package/poc/node_modules/node-firebird/lib/wire/transaction.js +206 -0
- package/poc/node_modules/node-firebird/lib/wire/xsqlvar.js +703 -0
- package/poc/node_modules/node-firebird/package.json +38 -0
- package/poc/node_modules/node-firebird/vitest.config.js +24 -0
- package/vitest.config.js +3 -1
|
@@ -0,0 +1,1524 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GDS Error codes
|
|
3
|
+
* Extracted from https://www.firebirdsql.org/pdfrefdocs/Firebird-2.1-ErrorCodes.pdf
|
|
4
|
+
*/
|
|
5
|
+
declare module 'node-firebird/lib/gdscodes' {
|
|
6
|
+
export enum GDSCode {
|
|
7
|
+
/** Arithmetic exception, numeric overflow, or string */
|
|
8
|
+
ARITH_EXCEPT = 335544321,
|
|
9
|
+
/** Invalid database key */
|
|
10
|
+
BAD_DBKEY = 335544322,
|
|
11
|
+
/** File @1 is not a valid */
|
|
12
|
+
BAD_DB_FORMAT = 335544323,
|
|
13
|
+
/** Invalid database handle (no active connection) */
|
|
14
|
+
BAD_DB_HANDLE = 335544324,
|
|
15
|
+
/** Bad parameters on attach or create */
|
|
16
|
+
BAD_DPB_CONTENT = 335544325,
|
|
17
|
+
/** Unrecognized database parameter block */
|
|
18
|
+
BAD_DPB_FORM = 335544326,
|
|
19
|
+
/** Invalid request handle */
|
|
20
|
+
BAD_REQ_HANDLE = 335544327,
|
|
21
|
+
/** Invalid BLOB handle */
|
|
22
|
+
BAD_SEGSTR_HANDLE = 335544328,
|
|
23
|
+
/** Invalid BLOB ID */
|
|
24
|
+
BAD_SEGSTR_ID = 335544329,
|
|
25
|
+
/** Invalid parameter in transaction parameter block */
|
|
26
|
+
BAD_TPB_CONTENT = 335544330,
|
|
27
|
+
/** Invalid format for transaction parameter block */
|
|
28
|
+
BAD_TPB_FORM = 335544331,
|
|
29
|
+
/** Invalid transaction handle (expecting explicit */
|
|
30
|
+
BAD_TRANS_HANDLE = 335544332,
|
|
31
|
+
/** Internal gds software consistency check (@1) */
|
|
32
|
+
BUG_CHECK = 335544333,
|
|
33
|
+
/** Conversion error from string "@1" */
|
|
34
|
+
CONVERT_ERROR = 335544334,
|
|
35
|
+
/** Database file appears corrupt (@1) */
|
|
36
|
+
DB_CORRUPT = 335544335,
|
|
37
|
+
/** Deadlock */
|
|
38
|
+
DEADLOCK = 335544336,
|
|
39
|
+
/** Attempt to start more than @1 */
|
|
40
|
+
EXCESS_TRANS = 335544337,
|
|
41
|
+
/** No match for first value expression */
|
|
42
|
+
FROM_NO_MATCH = 335544338,
|
|
43
|
+
/** Information type inappropriate for object */
|
|
44
|
+
INFINAP = 335544339,
|
|
45
|
+
/** No information of this type available */
|
|
46
|
+
INFONA = 335544340,
|
|
47
|
+
/** Unknown information item */
|
|
48
|
+
INFUNK = 335544341,
|
|
49
|
+
/** Action cancelled by trigger (@1) to */
|
|
50
|
+
INTEG_FAIL = 335544342,
|
|
51
|
+
/** Invalid request BLR at offset @1 */
|
|
52
|
+
INVALID_BLR = 335544343,
|
|
53
|
+
/** I/O error for file "@2" */
|
|
54
|
+
IO_ERROR = 335544344,
|
|
55
|
+
/** Lock conflict on no wait transaction */
|
|
56
|
+
LOCK_CONFLICT = 335544345,
|
|
57
|
+
/** Corrupt system table */
|
|
58
|
+
METADATA_CORRUPT = 335544346,
|
|
59
|
+
/** Validation error for column @1, value */
|
|
60
|
+
NOT_VALID = 335544347,
|
|
61
|
+
/** No current record for fetch operation */
|
|
62
|
+
NO_CUR_REC = 335544348,
|
|
63
|
+
/** Attempt to store duplicate value (visible */
|
|
64
|
+
NO_DUP = 335544349,
|
|
65
|
+
/** Program attempted to exit without finishing */
|
|
66
|
+
NO_FINISH = 335544350,
|
|
67
|
+
/** Unsuccessful metadata update */
|
|
68
|
+
NO_META_UPDATE = 335544351,
|
|
69
|
+
/** No permission for @1 access to */
|
|
70
|
+
NO_PRIV = 335544352,
|
|
71
|
+
/** Transaction is not in limbo */
|
|
72
|
+
NO_RECON = 335544353,
|
|
73
|
+
/** Invalid database key */
|
|
74
|
+
NO_RECORD = 335544354,
|
|
75
|
+
/** BLOB was not closed */
|
|
76
|
+
NO_SEGSTR_CLOSE = 335544355,
|
|
77
|
+
/** Metadata is obsolete */
|
|
78
|
+
OBSOLETE_METADATA = 335544356,
|
|
79
|
+
/** Cannot disconnect database with open */
|
|
80
|
+
OPEN_TRANS = 335544357,
|
|
81
|
+
/** Message length error (encountered @1, expected */
|
|
82
|
+
PORT_LEN = 335544358,
|
|
83
|
+
/** Attempted update of read-only column */
|
|
84
|
+
READ_ONLY_FIELD = 335544359,
|
|
85
|
+
/** Attempted update of read-only table */
|
|
86
|
+
READ_ONLY_REL = 335544360,
|
|
87
|
+
/** Attempted update during read-only transaction */
|
|
88
|
+
READ_ONLY_TRANS = 335544361,
|
|
89
|
+
/** Cannot update read-only view @1 */
|
|
90
|
+
READ_ONLY_VIEW = 335544362,
|
|
91
|
+
/** No transaction for request */
|
|
92
|
+
REQ_NO_TRANS = 335544363,
|
|
93
|
+
/** Request synchronization error */
|
|
94
|
+
REQ_SYNC = 335544364,
|
|
95
|
+
/** Request referenced an unavailable database */
|
|
96
|
+
REQ_WRONG_DB = 335544365,
|
|
97
|
+
/** Segment buffer length shorter than expected */
|
|
98
|
+
SEGMENT = 335544366,
|
|
99
|
+
/** Attempted retrieval of more segments than */
|
|
100
|
+
SEGSTR_EOF = 335544367,
|
|
101
|
+
/** Attempted invalid operation on a BLOB */
|
|
102
|
+
SEGSTR_NO_OP = 335544368,
|
|
103
|
+
/** Attempted read of a new, open */
|
|
104
|
+
SEGSTR_NO_READ = 335544369,
|
|
105
|
+
/** Attempted action on blob outside transaction */
|
|
106
|
+
SEGSTR_NO_TRANS = 335544370,
|
|
107
|
+
/** Attempted write to read-only BLOB */
|
|
108
|
+
SEGSTR_NO_WRITE = 335544371,
|
|
109
|
+
/** Attempted reference to BLOB in unavailable */
|
|
110
|
+
SEGSTR_WRONG_DB = 335544372,
|
|
111
|
+
/** Operating system directive @1 failed */
|
|
112
|
+
SYS_REQUEST = 335544373,
|
|
113
|
+
/** Attempt to fetch past the last */
|
|
114
|
+
STREAM_EOF = 335544374,
|
|
115
|
+
/** Unavailable database */
|
|
116
|
+
UNAVAILABLE = 335544375,
|
|
117
|
+
/** Table @1 was omitted from the */
|
|
118
|
+
UNRES_REL = 335544376,
|
|
119
|
+
/** Request includes a DSRI extension not */
|
|
120
|
+
UNS_EXT = 335544377,
|
|
121
|
+
/** Feature is not supported */
|
|
122
|
+
WISH_LIST = 335544378,
|
|
123
|
+
/** Unsupported on-disk structure for file @1; */
|
|
124
|
+
WRONG_ODS = 335544379,
|
|
125
|
+
/** Wrong number of arguments on call */
|
|
126
|
+
WRONUMARG = 335544380,
|
|
127
|
+
/** Implementation limit exceeded */
|
|
128
|
+
IMP_EXC = 335544381,
|
|
129
|
+
/** @1 */
|
|
130
|
+
RANDOM = 335544382,
|
|
131
|
+
/** Unrecoverable conflict with limbo transaction @1 */
|
|
132
|
+
FATAL_CONFLICT = 335544383,
|
|
133
|
+
/** Internal error */
|
|
134
|
+
BADBLK = 335544384,
|
|
135
|
+
/** Internal error */
|
|
136
|
+
INVPOOLCL = 335544385,
|
|
137
|
+
/** Too many requests */
|
|
138
|
+
NOPOOLIDS = 335544386,
|
|
139
|
+
/** Internal error */
|
|
140
|
+
RELBADBLK = 335544387,
|
|
141
|
+
/** Block size exceeds implementation restriction */
|
|
142
|
+
BLKTOOBIG = 335544388,
|
|
143
|
+
/** Buffer exhausted */
|
|
144
|
+
BUFEXH = 335544389,
|
|
145
|
+
/** BLR syntax error= expected @1 at */
|
|
146
|
+
SYNTAXERR = 335544390,
|
|
147
|
+
/** Buffer in use */
|
|
148
|
+
BUFINUSE = 335544391,
|
|
149
|
+
/** Internal error */
|
|
150
|
+
BDBINCON = 335544392,
|
|
151
|
+
/** Request in use */
|
|
152
|
+
REQINUSE = 335544393,
|
|
153
|
+
/** Incompatible version of on-disk structure */
|
|
154
|
+
BADODSVER = 335544394,
|
|
155
|
+
/** Table @1 is not defined */
|
|
156
|
+
RELNOTDEF = 335544395,
|
|
157
|
+
/** Column @1 is not defined in */
|
|
158
|
+
FLDNOTDEF = 335544396,
|
|
159
|
+
/** Internal error */
|
|
160
|
+
DIRTYPAGE = 335544397,
|
|
161
|
+
/** Internal error */
|
|
162
|
+
WAIFORTRA = 335544398,
|
|
163
|
+
/** Internal error */
|
|
164
|
+
DOUBLELOC = 335544399,
|
|
165
|
+
/** Internal error */
|
|
166
|
+
NODNOTFND = 335544400,
|
|
167
|
+
/** Internal error */
|
|
168
|
+
DUPNODFND = 335544401,
|
|
169
|
+
/** Internal error */
|
|
170
|
+
LOCNOTMAR = 335544402,
|
|
171
|
+
/** Page @1 is of wrong type */
|
|
172
|
+
BADPAGTYP = 335544403,
|
|
173
|
+
/** Database corrupted */
|
|
174
|
+
CORRUPT = 335544404,
|
|
175
|
+
/** Checksum error on database page @1 */
|
|
176
|
+
BADPAGE = 335544405,
|
|
177
|
+
/** Index is broken */
|
|
178
|
+
BADINDEX = 335544406,
|
|
179
|
+
/** Database handle not zero */
|
|
180
|
+
DBBNOTZER = 335544407,
|
|
181
|
+
/** Transaction handle not zero */
|
|
182
|
+
TRANOTZER = 335544408,
|
|
183
|
+
/** Transaction--request mismatch (synchronization */
|
|
184
|
+
TRAREQMIS = 335544409,
|
|
185
|
+
/** Bad handle count */
|
|
186
|
+
BADHNDCNT = 335544410,
|
|
187
|
+
/** Wrong version of transaction parameter block */
|
|
188
|
+
WROTPBVER = 335544411,
|
|
189
|
+
/** Unsupported BLR version (expected @1, */
|
|
190
|
+
WROBLRVER = 335544412,
|
|
191
|
+
/** Wrong version of database parameter block */
|
|
192
|
+
WRODPBVER = 335544413,
|
|
193
|
+
/** BLOB and array data types are */
|
|
194
|
+
BLOBNOTSUP = 335544414,
|
|
195
|
+
/** Database corrupted */
|
|
196
|
+
BADRELATION = 335544415,
|
|
197
|
+
/** Internal error */
|
|
198
|
+
NODETACH = 335544416,
|
|
199
|
+
/** Internal error */
|
|
200
|
+
NOTREMOTE = 335544417,
|
|
201
|
+
/** Transaction in limbo */
|
|
202
|
+
TRAINLIM = 335544418,
|
|
203
|
+
/** Transaction not in limbo */
|
|
204
|
+
NOTINLIM = 335544419,
|
|
205
|
+
/** Transaction outstanding */
|
|
206
|
+
TRAOUTSTA = 335544420,
|
|
207
|
+
/** Connection rejected by remote interface */
|
|
208
|
+
CONNECT_REJECT = 335544421,
|
|
209
|
+
/** Internal error */
|
|
210
|
+
DBFILE = 335544422,
|
|
211
|
+
/** Internal error */
|
|
212
|
+
ORPHAN = 335544423,
|
|
213
|
+
/** No lock manager available */
|
|
214
|
+
NO_LOCK_MGR = 335544424,
|
|
215
|
+
/** Context already in use (BLR error) */
|
|
216
|
+
CTXINUSE = 335544425,
|
|
217
|
+
/** Context not defined (BLR error) */
|
|
218
|
+
CTXNOTDEF = 335544426,
|
|
219
|
+
/** Data operation not supported */
|
|
220
|
+
DATNOTSUP = 335544427,
|
|
221
|
+
/** Undefined message number */
|
|
222
|
+
BADMSGNUM = 335544428,
|
|
223
|
+
/** Bad parameter number */
|
|
224
|
+
BADPARNUM = 335544429,
|
|
225
|
+
/** Unable to allocate memory from operating */
|
|
226
|
+
VIRMEMEXH = 335544430,
|
|
227
|
+
/** Blocking signal has been received */
|
|
228
|
+
BLOCKING_SIGNAL = 335544431,
|
|
229
|
+
/** Lock manager error */
|
|
230
|
+
LOCKMANERR = 335544432,
|
|
231
|
+
/** Key size exceeds implementation restriction for */
|
|
232
|
+
KEYTOOBIG = 335544434,
|
|
233
|
+
/** Null segment of UNIQUE KEY */
|
|
234
|
+
NULLSEGKEY = 335544435,
|
|
235
|
+
/** SQL error code = @1 */
|
|
236
|
+
SQLERR = 335544436,
|
|
237
|
+
/** Wrong DYN version */
|
|
238
|
+
WRODYNVER = 335544437,
|
|
239
|
+
/** Function @1 is not defined */
|
|
240
|
+
FUNNOTDEF = 335544438,
|
|
241
|
+
/** Function @1 could not be matched */
|
|
242
|
+
FUNMISMAT = 335544439,
|
|
243
|
+
/** */
|
|
244
|
+
BAD_MSG_VEC = 335544440,
|
|
245
|
+
/** Database detach completed with errors */
|
|
246
|
+
BAD_DETACH = 335544441,
|
|
247
|
+
/** Database system cannot read argument @1 */
|
|
248
|
+
NOARGACC_READ = 335544442,
|
|
249
|
+
/** Database system cannot write argument @1 */
|
|
250
|
+
NOARGACC_WRITE = 335544443,
|
|
251
|
+
/** Operation not supported */
|
|
252
|
+
READ_ONLY = 335544444,
|
|
253
|
+
/** @1 extension error */
|
|
254
|
+
EXT_ERR = 335544445,
|
|
255
|
+
/** Not updatable */
|
|
256
|
+
NON_UPDATABLE = 335544446,
|
|
257
|
+
/** No rollback performed */
|
|
258
|
+
NO_ROLLBACK = 335544447,
|
|
259
|
+
/** */
|
|
260
|
+
BAD_SEC_INFO = 335544448,
|
|
261
|
+
/** */
|
|
262
|
+
INVALID_SEC_INFO = 335544449,
|
|
263
|
+
/** @1 */
|
|
264
|
+
MISC_INTERPRETED = 335544450,
|
|
265
|
+
/** Update conflicts with concurrent update */
|
|
266
|
+
UPDATE_CONFLICT = 335544451,
|
|
267
|
+
/** Object @1 is in use */
|
|
268
|
+
OBJ_IN_USE = 335544453,
|
|
269
|
+
/** Filter not found to convert type */
|
|
270
|
+
NOFILTER = 335544454,
|
|
271
|
+
/** Cannot attach active shadow file */
|
|
272
|
+
SHADOW_ACCESSED = 335544455,
|
|
273
|
+
/** Invalid slice description language at offset */
|
|
274
|
+
INVALID_SDL = 335544456,
|
|
275
|
+
/** Subscript out of bounds */
|
|
276
|
+
OUT_OF_BOUNDS = 335544457,
|
|
277
|
+
/** Column not array or invalid dimensions */
|
|
278
|
+
INVALID_DIMENSION = 335544458,
|
|
279
|
+
/** Record from transaction @1 is stuck */
|
|
280
|
+
REC_IN_LIMBO = 335544459,
|
|
281
|
+
/** A file in manual shadow @1 */
|
|
282
|
+
SHADOW_MISSING = 335544460,
|
|
283
|
+
/** Secondary server attachments cannot validate */
|
|
284
|
+
CANT_VALIDATE = 335544461,
|
|
285
|
+
/** Generator @1 is not defined */
|
|
286
|
+
GENNOTDEF = 335544463,
|
|
287
|
+
/** Secondary server attachments cannot start logging */
|
|
288
|
+
CANT_START_LOGGING = 335544464,
|
|
289
|
+
/** Invalid BLOB type for operation */
|
|
290
|
+
BAD_SEGSTR_TYPE = 335544465,
|
|
291
|
+
/** Violation of FOREIGN KEY constraint "@1" */
|
|
292
|
+
FOREIGN_KEY = 335544466,
|
|
293
|
+
/** Minor version too high found @1 */
|
|
294
|
+
HIGH_MINOR = 335544467,
|
|
295
|
+
/** Transaction @1 is @2 */
|
|
296
|
+
TRA_STATE = 335544468,
|
|
297
|
+
/** Transaction marked invalid by I/O error */
|
|
298
|
+
TRANS_INVALID = 335544469,
|
|
299
|
+
/** Cache buffer for page @1 invalid */
|
|
300
|
+
BUF_INVALID = 335544470,
|
|
301
|
+
/** There is no index in table */
|
|
302
|
+
INDEXNOTDEFINED = 335544471,
|
|
303
|
+
/** Your user name and password are */
|
|
304
|
+
LOGIN = 335544472,
|
|
305
|
+
/** Invalid bookmark handle */
|
|
306
|
+
INVALID_BOOKMARK = 335544473,
|
|
307
|
+
/** Invalid lock level @1 */
|
|
308
|
+
BAD_LOCK_LEVEL = 335544474,
|
|
309
|
+
/** Lock on table @1 conflicts with */
|
|
310
|
+
RELATION_LOCK = 335544475,
|
|
311
|
+
/** Requested record lock conflicts with existing */
|
|
312
|
+
RECORD_LOCK = 335544476,
|
|
313
|
+
/** Maximum indexes per table (@1) exceeded */
|
|
314
|
+
MAX_IDX = 335544477,
|
|
315
|
+
/** Invalid statement handle */
|
|
316
|
+
BAD_STMT_HANDLE = 335544485,
|
|
317
|
+
/** WAL Writer error */
|
|
318
|
+
WALW_ERR = 335544487,
|
|
319
|
+
/** Log file header of @1 too */
|
|
320
|
+
LOGH_SMALL = 335544488,
|
|
321
|
+
/** Invalid version of log file @1 */
|
|
322
|
+
LOGH_INV_VERSION = 335544489,
|
|
323
|
+
/** Log file @1 not latest in */
|
|
324
|
+
LOGH_OPEN_FLAG = 335544490,
|
|
325
|
+
/** Log file @1 not closed properly; */
|
|
326
|
+
LOGH_OPEN_FLAG2 = 335544491,
|
|
327
|
+
/** Database name in the log file */
|
|
328
|
+
LOGH_DIFF_DBNAME = 335544492,
|
|
329
|
+
/** Unexpected end of log file @1 */
|
|
330
|
+
LOGF_UNEXPECTED_EOF = 335544493,
|
|
331
|
+
/** Incomplete log record at offset @1 */
|
|
332
|
+
LOGR_INCOMPLETE = 335544494,
|
|
333
|
+
/** Log record header too small at */
|
|
334
|
+
LOGR_HEADER_SMALL = 335544495,
|
|
335
|
+
/** Log block too small at offset */
|
|
336
|
+
LOGB_SMALL = 335544496,
|
|
337
|
+
/** Database does not use Write-ahead Log */
|
|
338
|
+
NO_WAL = 335544500,
|
|
339
|
+
/** Reference to invalid stream number */
|
|
340
|
+
STREAM_NOT_DEFINED = 335544502,
|
|
341
|
+
/** Database @1 shutdown in progress */
|
|
342
|
+
SHUTINPROG = 335544506,
|
|
343
|
+
/** Refresh range number @1 already in */
|
|
344
|
+
RANGE_IN_USE = 335544507,
|
|
345
|
+
/** Refresh range number @1 not found */
|
|
346
|
+
RANGE_NOT_FOUND = 335544508,
|
|
347
|
+
/** CHARACTER SET @1 is not defined */
|
|
348
|
+
CHARSET_NOT_FOUND = 335544509,
|
|
349
|
+
/** Lock time-out on wait transaction */
|
|
350
|
+
LOCK_TIMEOUT = 335544510,
|
|
351
|
+
/** Procedure @1 is not defined */
|
|
352
|
+
PRCNOTDEF = 335544511,
|
|
353
|
+
/** Input parameter mismatch for procedure @1 */
|
|
354
|
+
PRCMISMAT = 335544512,
|
|
355
|
+
/** Status code @1 unknown */
|
|
356
|
+
CODNOTDEF = 335544515,
|
|
357
|
+
/** Exception @1 not defined */
|
|
358
|
+
XCPNOTDEF = 335544516,
|
|
359
|
+
/** Exception @1 */
|
|
360
|
+
EXCEPT = 335544517,
|
|
361
|
+
/** Restart shared cache manager */
|
|
362
|
+
CACHE_RESTART = 335544518,
|
|
363
|
+
/** Invalid lock handle */
|
|
364
|
+
BAD_LOCK_HANDLE = 335544519,
|
|
365
|
+
/** Database @1 shutdown */
|
|
366
|
+
SHUTDOWN = 335544528,
|
|
367
|
+
/** Cannot modify an existing user privilege */
|
|
368
|
+
EXISTING_PRIV_MOD = 335544529,
|
|
369
|
+
/** Cannot delete PRIMARY KEY being used */
|
|
370
|
+
PRIMARY_KEY_REF = 335544530,
|
|
371
|
+
/** Column used in a PRIMARY constraint */
|
|
372
|
+
PRIMARY_KEY_NOTNULL = 335544531,
|
|
373
|
+
/** Name of Referential Constraint not defined */
|
|
374
|
+
REF_CNSTRNT_NOTFOUND = 335544532,
|
|
375
|
+
/** Non-existent PRIMARY or UNIQUE KEY */
|
|
376
|
+
FOREIGN_KEY_NOTFOUND = 335544533,
|
|
377
|
+
/** Cannot update constraints */
|
|
378
|
+
REF_CNSTRNT_UPDATE = 335544534,
|
|
379
|
+
/** Cannot update constraints */
|
|
380
|
+
CHECK_CNSTRNT_UPDATE = 335544535,
|
|
381
|
+
/** Cannot delete CHECK constraint entry */
|
|
382
|
+
CHECK_CNSTRNT_DEL = 335544536,
|
|
383
|
+
/** Cannot delete index segment used by */
|
|
384
|
+
INTEG_INDEX_SEG_DEL = 335544537,
|
|
385
|
+
/** Cannot update index segment used by */
|
|
386
|
+
INTEG_INDEX_SEG_MOD = 335544538,
|
|
387
|
+
/** Cannot delete index used by an */
|
|
388
|
+
INTEG_INDEX_DEL = 335544539,
|
|
389
|
+
/** Cannot modify index used by an */
|
|
390
|
+
INTEG_INDEX_MOD = 335544540,
|
|
391
|
+
/** Cannot delete trigger used by a */
|
|
392
|
+
CHECK_TRIG_DEL = 335544541,
|
|
393
|
+
/** Cannot update trigger used by a */
|
|
394
|
+
CHECK_TRIG_UPDATE = 335544542,
|
|
395
|
+
/** Cannot delete column being used in */
|
|
396
|
+
CNSTRNT_FLD_DEL = 335544543,
|
|
397
|
+
/** Cannot rename column being used in */
|
|
398
|
+
CNSTRNT_FLD_RENAME = 335544544,
|
|
399
|
+
/** Cannot update constraints */
|
|
400
|
+
REL_CNSTRNT_UPDATE = 335544545,
|
|
401
|
+
/** Cannot define constraints on views */
|
|
402
|
+
CONSTAINT_ON_VIEW = 335544546,
|
|
403
|
+
/** Internal gds software consistency check (invalid */
|
|
404
|
+
INVLD_CNSTRNT_TYPE = 335544547,
|
|
405
|
+
/** Attempt to define a second PRIMARY */
|
|
406
|
+
PRIMARY_KEY_EXISTS = 335544548,
|
|
407
|
+
/** Cannot modify or erase a system */
|
|
408
|
+
SYSTRIG_UPDATE = 335544549,
|
|
409
|
+
/** Only the owner of a table */
|
|
410
|
+
NOT_REL_OWNER = 335544550,
|
|
411
|
+
/** Could not find table/procedure for GRANT */
|
|
412
|
+
GRANT_OBJ_NOTFOUND = 335544551,
|
|
413
|
+
/** Could not find column for GRANT */
|
|
414
|
+
GRANT_FLD_NOTFOUND = 335544552,
|
|
415
|
+
/** User does not have GRANT privileges */
|
|
416
|
+
GRANT_NOPRIV = 335544553,
|
|
417
|
+
/** Table/procedure has non-SQL security class */
|
|
418
|
+
NONSQL_SECURITY_REL = 335544554,
|
|
419
|
+
/** Column has non-SQL security class defined */
|
|
420
|
+
NONSQL_SECURITY_FLD = 335544555,
|
|
421
|
+
/** Database shutdown unsuccessful */
|
|
422
|
+
SHUTFAIL = 335544557,
|
|
423
|
+
/** Operation violates CHECK constraint @1 on */
|
|
424
|
+
CHECK_CONSTRAINT = 335544558,
|
|
425
|
+
/** Invalid service handle */
|
|
426
|
+
BAD_SVC_HANDLE = 335544559,
|
|
427
|
+
/** Database @1 shutdown in @2 seconds */
|
|
428
|
+
SHUTWARN = 335544560,
|
|
429
|
+
/** Wrong version of service parameter block */
|
|
430
|
+
WROSPBVER = 335544561,
|
|
431
|
+
/** Unrecognized service parameter block */
|
|
432
|
+
BAD_SPB_FORM = 335544562,
|
|
433
|
+
/** Service @1 is not defined */
|
|
434
|
+
SVCNOTDEF = 335544563,
|
|
435
|
+
/** Cannot transliterate character between character */
|
|
436
|
+
TRANSLITERATION_FAILED = 335544565,
|
|
437
|
+
/** WAL defined; Cache Manager must be */
|
|
438
|
+
START_CM_FOR_WAL = 335544566,
|
|
439
|
+
/** Implementation of text subtype @1 not */
|
|
440
|
+
TEXT_SUBTYPE = 335544568,
|
|
441
|
+
/** Dynamic SQL Error */
|
|
442
|
+
DSQL_ERROR = 335544569,
|
|
443
|
+
/** Invalid command */
|
|
444
|
+
DSQL_COMMAND_ERR = 335544570,
|
|
445
|
+
/** Data type for constant unknown */
|
|
446
|
+
DSQL_CONSTANT_ERR = 335544571,
|
|
447
|
+
/** Invalid cursor reference */
|
|
448
|
+
DSQL_CURSOR_ERR = 335544572,
|
|
449
|
+
/** Data type unknown */
|
|
450
|
+
DSQL_DATATYPE_ERR = 335544573,
|
|
451
|
+
/** Invalid cursor declaration */
|
|
452
|
+
DSQL_DECL_ERR = 335544574,
|
|
453
|
+
/** Cursor @1 is not updatable */
|
|
454
|
+
DSQL_CURSOR_UPDATE_ERR = 335544575,
|
|
455
|
+
/** Attempt to reopen an open cursor */
|
|
456
|
+
DSQL_CURSOR_OPEN_ERR = 335544576,
|
|
457
|
+
/** Attempt to reclose a closed cursor */
|
|
458
|
+
DSQL_CURSOR_CLOSE_ERR = 335544577,
|
|
459
|
+
/** Column unknown */
|
|
460
|
+
DSQL_FIELD_ERR = 335544578,
|
|
461
|
+
/** Internal error */
|
|
462
|
+
DSQL_INTERNAL_ERR = 335544579,
|
|
463
|
+
/** Table unknown */
|
|
464
|
+
DSQL_RELATION_ERR = 335544580,
|
|
465
|
+
/** Procedure unknown */
|
|
466
|
+
DSQL_PROCEDURE_ERR = 335544581,
|
|
467
|
+
/** Request unknown */
|
|
468
|
+
DSQL_REQUEST_ERR = 335544582,
|
|
469
|
+
/** SQLDA missing or incorrect version, or */
|
|
470
|
+
DSQL_SQLDA_ERR = 335544583,
|
|
471
|
+
/** Count of read-write columns does not */
|
|
472
|
+
DSQL_VAR_COUNT_ERR = 335544584,
|
|
473
|
+
/** Invalid statement handle */
|
|
474
|
+
DSQL_STMT_HANDLE = 335544585,
|
|
475
|
+
/** Function unknown */
|
|
476
|
+
DSQL_FUNCTION_ERR = 335544586,
|
|
477
|
+
/** Column is not a BLOB */
|
|
478
|
+
DSQL_BLOB_ERR = 335544587,
|
|
479
|
+
/** COLLATION @1 for CHARACTER SET @2 */
|
|
480
|
+
COLLATION_NOT_FOUND = 335544588,
|
|
481
|
+
/** COLLATION @1 is not valid for */
|
|
482
|
+
COLLATION_NOT_FOR_CHARSET = 335544589,
|
|
483
|
+
/** Option specified more than once */
|
|
484
|
+
DSQL_DUP_OPTION = 335544590,
|
|
485
|
+
/** Unknown transaction option */
|
|
486
|
+
DSQL_TRAN_ERR = 335544591,
|
|
487
|
+
/** Invalid array reference */
|
|
488
|
+
DSQL_INVALID_ARRAY = 335544592,
|
|
489
|
+
/** Array declared with too many dimensions */
|
|
490
|
+
DSQL_MAX_ARR_DIM_EXCEEDED = 335544593,
|
|
491
|
+
/** Illegal array dimension range */
|
|
492
|
+
DSQL_ARR_RANGE_ERROR = 335544594,
|
|
493
|
+
/** Trigger unknown */
|
|
494
|
+
DSQL_TRIGGER_ERR = 335544595,
|
|
495
|
+
/** Subselect illegal in this context */
|
|
496
|
+
DSQL_SUBSELECT_ERR = 335544596,
|
|
497
|
+
/** Cannot prepare a CREATE */
|
|
498
|
+
DSQL_CRDB_PREPARE_ERR = 335544597,
|
|
499
|
+
/** Must specify column name for view */
|
|
500
|
+
SPECIFY_FIELD_ERR = 335544598,
|
|
501
|
+
/** Number of columns does not match */
|
|
502
|
+
NUM_FIELD_ERR = 335544599,
|
|
503
|
+
/** Only simple column names permitted for */
|
|
504
|
+
COL_NAME_ERR = 335544600,
|
|
505
|
+
/** No WHERE clause for VIEW WITH */
|
|
506
|
+
WHERE_ERR = 335544601,
|
|
507
|
+
/** Only one table allowed for VIEW */
|
|
508
|
+
TABLE_VIEW_ERR = 335544602,
|
|
509
|
+
/** DISTINCT, GROUP or HAVING not permitted */
|
|
510
|
+
DISTINCT_ERR = 335544603,
|
|
511
|
+
/** FOREIGN KEY column count does not */
|
|
512
|
+
KEY_FIELD_COUNT_ERR = 335544604,
|
|
513
|
+
/** No subqueries permitted for VIEW WITH */
|
|
514
|
+
SUBQUERY_ERR = 335544605,
|
|
515
|
+
/** Expression evaluation not supported */
|
|
516
|
+
EXPRESSION_EVAL_ERR = 335544606,
|
|
517
|
+
/** Gen.c= node not supported */
|
|
518
|
+
NODE_ERR = 335544607,
|
|
519
|
+
/** Unexpected end of command */
|
|
520
|
+
COMMAND_END_ERR = 335544608,
|
|
521
|
+
/** INDEX @1 */
|
|
522
|
+
INDEX_NAME = 335544609,
|
|
523
|
+
/** EXCEPTION @1 */
|
|
524
|
+
EXCEPTION_NAME = 335544610,
|
|
525
|
+
/** COLUMN @1 */
|
|
526
|
+
FIELD_NAME = 335544611,
|
|
527
|
+
/** Token unknown */
|
|
528
|
+
TOKEN_ERR = 335544612,
|
|
529
|
+
/** Union not supported */
|
|
530
|
+
UNION_ERR = 335544613,
|
|
531
|
+
/** Unsupported DSQL construct */
|
|
532
|
+
DSQL_CONSTRUCT_ERR = 335544614,
|
|
533
|
+
/** Column used with aggregate */
|
|
534
|
+
FIELD_AGGREGATE_ERR = 335544615,
|
|
535
|
+
/** Invalid column reference */
|
|
536
|
+
FIELD_REF_ERR = 335544616,
|
|
537
|
+
/** Invalid ORDER BY clause */
|
|
538
|
+
ORDER_BY_ERR = 335544617,
|
|
539
|
+
/** Return mode by value not allowed */
|
|
540
|
+
RETURN_MODE_ERR = 335544618,
|
|
541
|
+
/** External functions cannot have more than */
|
|
542
|
+
EXTERN_FUNC_ERR = 335544619,
|
|
543
|
+
/** Alias @1 conflicts with an alias */
|
|
544
|
+
ALIAS_CONFLICT_ERR = 335544620,
|
|
545
|
+
/** Alias @1 conflicts with a procedure */
|
|
546
|
+
PROCEDURE_CONFLICT_ERROR = 335544621,
|
|
547
|
+
/** Alias @1 conflicts with a table */
|
|
548
|
+
RELATION_CONFLICT_ERR = 335544622,
|
|
549
|
+
/** Illegal use of keyword VALUE */
|
|
550
|
+
DSQL_DOMAIN_ERR = 335544623,
|
|
551
|
+
/** Segment count of 0 defined for */
|
|
552
|
+
IDX_SEG_ERR = 335544624,
|
|
553
|
+
/** A node name is not permitted */
|
|
554
|
+
NODE_NAME_ERR = 335544625,
|
|
555
|
+
/** TABLE @1 */
|
|
556
|
+
TABLE_NAME = 335544626,
|
|
557
|
+
/** PROCEDURE @1 */
|
|
558
|
+
PROC_NAME = 335544627,
|
|
559
|
+
/** Cannot create index @1 */
|
|
560
|
+
IDX_CREATE_ERR = 335544628,
|
|
561
|
+
/** There are @1 dependencies */
|
|
562
|
+
DEPENDENCY = 335544630,
|
|
563
|
+
/** Too many keys defined for index */
|
|
564
|
+
IDX_KEY_ERR = 335544631,
|
|
565
|
+
/** Preceding file did not specify length, */
|
|
566
|
+
DSQL_FILE_LENGTH_ERR = 335544632,
|
|
567
|
+
/** Shadow number must be a positive */
|
|
568
|
+
DSQL_SHADOW_NUMBER_ERR = 335544633,
|
|
569
|
+
/** Token unknown- line @1, column @2 */
|
|
570
|
+
DSQL_TOKEN_UNK_ERR = 335544634,
|
|
571
|
+
/** There is no alias or table */
|
|
572
|
+
DSQL_NO_RELATION_ALIAS = 335544635,
|
|
573
|
+
/** There is no index @1 for */
|
|
574
|
+
INDEXNAME = 335544636,
|
|
575
|
+
/** Table @1 is not referenced in */
|
|
576
|
+
NO_STREAM_PLAN = 335544637,
|
|
577
|
+
/** Table @1 is referenced more than */
|
|
578
|
+
STREAM_TWICE = 335544638,
|
|
579
|
+
/** Table @1 is referenced in the */
|
|
580
|
+
STREAM_NOT_FOUND = 335544639,
|
|
581
|
+
/** Invalid use of CHARACTER SET or */
|
|
582
|
+
COLLATION_REQUIRES_TEXT = 335544640,
|
|
583
|
+
/** Specified domain or source column @1 */
|
|
584
|
+
DSQL_DOMAIN_NOT_FOUND = 335544641,
|
|
585
|
+
/** Index @1 cannot be used in */
|
|
586
|
+
INDEX_UNUSED = 335544642,
|
|
587
|
+
/** The table @1 is referenced twice; */
|
|
588
|
+
DSQL_SELF_JOIN = 335544643,
|
|
589
|
+
/** Illegal operation when at beginning of */
|
|
590
|
+
STREAM_BOF = 335544644,
|
|
591
|
+
/** The current position is on a */
|
|
592
|
+
STREAM_CRACK = 335544645,
|
|
593
|
+
/** Database or file exists */
|
|
594
|
+
DB_OR_FILE_EXISTS = 335544646,
|
|
595
|
+
/** Invalid comparison operator for find operation */
|
|
596
|
+
INVALID_OPERATOR = 335544647,
|
|
597
|
+
/** Connection lost to pipe server */
|
|
598
|
+
CONN_LOST = 335544648,
|
|
599
|
+
/** Bad checksum */
|
|
600
|
+
BAD_CHECKSUM = 335544649,
|
|
601
|
+
/** Wrong page type */
|
|
602
|
+
PAGE_TYPE_ERR = 335544650,
|
|
603
|
+
/** Cannot insert because the file is */
|
|
604
|
+
EXT_READONLY_ERR = 335544651,
|
|
605
|
+
/** Multiple rows in singleton select */
|
|
606
|
+
SING_SELECT_ERR = 335544652,
|
|
607
|
+
/** Cannot attach to password database */
|
|
608
|
+
PSW_ATTACH = 335544653,
|
|
609
|
+
/** Cannot start transaction for password database */
|
|
610
|
+
PSW_START_TRANS = 335544654,
|
|
611
|
+
/** Invalid direction for find operation */
|
|
612
|
+
INVALID_DIRECTION = 335544655,
|
|
613
|
+
/** Variable @1 conflicts with parameter in */
|
|
614
|
+
DSQL_VAR_CONFLICT = 335544656,
|
|
615
|
+
/** Array/BLOB/DATE data types not allowed in */
|
|
616
|
+
DSQL_NO_BLOB_ARRAY = 335544657,
|
|
617
|
+
/** @1 is not a valid base */
|
|
618
|
+
DSQL_BASE_TABLE = 335544658,
|
|
619
|
+
/** Table @1 is referenced twice in */
|
|
620
|
+
DUPLICATE_BASE_TABLE = 335544659,
|
|
621
|
+
/** View @1 has more than one */
|
|
622
|
+
VIEW_ALIAS = 335544660,
|
|
623
|
+
/** Cannot add index, index root page */
|
|
624
|
+
INDEX_ROOT_PAGE_FULL = 335544661,
|
|
625
|
+
/** BLOB SUB_TYPE @1 is not defined */
|
|
626
|
+
DSQL_BLOB_TYPE_UNKNOWN = 335544662,
|
|
627
|
+
/** Too many concurrent executions of the */
|
|
628
|
+
REQ_MAX_CLONES_EXCEEDED = 335544663,
|
|
629
|
+
/** Duplicate specification of @1- not supported */
|
|
630
|
+
DSQL_DUPLICATE_SPEC = 335544664,
|
|
631
|
+
/** Violation of PRIMARY or UNIQUE KEY */
|
|
632
|
+
UNIQUE_KEY_VIOLATION = 335544665,
|
|
633
|
+
/** Server version too old to support */
|
|
634
|
+
SRVR_VERSION_TOO_OLD = 335544666,
|
|
635
|
+
/** Drop database completed with errors */
|
|
636
|
+
DRDB_COMPLETED_WITH_ERRS = 335544667,
|
|
637
|
+
/** Procedure @1 does not return any */
|
|
638
|
+
DSQL_PROCEDURE_USE_ERR = 335544668,
|
|
639
|
+
/** Count of column list and variable */
|
|
640
|
+
DSQL_COUNT_MISMATCH = 335544669,
|
|
641
|
+
/** Attempt to index BLOB column in */
|
|
642
|
+
BLOB_IDX_ERR = 335544670,
|
|
643
|
+
/** Attempt to index array column in */
|
|
644
|
+
ARRAY_IDX_ERR = 335544671,
|
|
645
|
+
/** Too few key columns found for */
|
|
646
|
+
KEY_FIELD_ERR = 335544672,
|
|
647
|
+
/** Cannot delete */
|
|
648
|
+
NO_DELETE = 335544673,
|
|
649
|
+
/** Last column in a table cannot */
|
|
650
|
+
DEL_LAST_FIELD = 335544674,
|
|
651
|
+
/** Sort error */
|
|
652
|
+
SORT_ERR = 335544675,
|
|
653
|
+
/** Sort error= not enough memory */
|
|
654
|
+
SORT_MEM_ERR = 335544676,
|
|
655
|
+
/** Too many versions */
|
|
656
|
+
VERSION_ERR = 335544677,
|
|
657
|
+
/** Invalid key position */
|
|
658
|
+
INVAL_KEY_POSN = 335544678,
|
|
659
|
+
/** Segments not allowed in expression index */
|
|
660
|
+
NO_SEGMENTS_ERR = 335544679,
|
|
661
|
+
/** Sort error= corruption in data structure */
|
|
662
|
+
CRRP_DATA_ERR = 335544680,
|
|
663
|
+
/** New record size of @1 bytes */
|
|
664
|
+
REC_SIZE_ERR = 335544681,
|
|
665
|
+
/** Inappropriate self-reference of column */
|
|
666
|
+
DSQL_FIELD_REF = 335544682,
|
|
667
|
+
/** Request depth exceeded. (Recursive definition?) */
|
|
668
|
+
REQ_DEPTH_EXCEEDED = 335544683,
|
|
669
|
+
/** Cannot access column @1 in view */
|
|
670
|
+
NO_FIELD_ACCESS = 335544684,
|
|
671
|
+
/** Dbkey not available for multi-table views */
|
|
672
|
+
NO_DBKEY = 335544685,
|
|
673
|
+
/** The prepare statement identifies a prepare */
|
|
674
|
+
DSQL_OPEN_CURSOR_REQUEST = 335544688,
|
|
675
|
+
/** Firebird error */
|
|
676
|
+
IB_ERROR = 335544689,
|
|
677
|
+
/** Cache redefined */
|
|
678
|
+
CACHE_REDEF = 335544690,
|
|
679
|
+
/** Insufficient memory to allocate page buffer */
|
|
680
|
+
CACHE_TOO_SMALL = 335544691,
|
|
681
|
+
/** Log redefined */
|
|
682
|
+
LOG_REDEF = 335544692,
|
|
683
|
+
/** Log size too small */
|
|
684
|
+
LOG_TOO_SMALL = 335544693,
|
|
685
|
+
/** Log partition size too small */
|
|
686
|
+
PARTITION_TOO_SMALL = 335544694,
|
|
687
|
+
/** Partitions not supported in series of */
|
|
688
|
+
PARTITION_NOT_SUPP = 335544695,
|
|
689
|
+
/** Total length of a partitioned log */
|
|
690
|
+
LOG_LENGTH_SPEC = 335544696,
|
|
691
|
+
/** Precision must be from 1 to */
|
|
692
|
+
PRECISION_ERR = 335544697,
|
|
693
|
+
/** Scale must be between zero and */
|
|
694
|
+
SCALE_NOGT = 335544698,
|
|
695
|
+
/** Short integer expected */
|
|
696
|
+
EXPEC_SHORT = 335544699,
|
|
697
|
+
/** Long integer expected */
|
|
698
|
+
EXPEC_LONG = 335544700,
|
|
699
|
+
/** Unsigned short integer expected */
|
|
700
|
+
EXPEC_USHORT = 335544701,
|
|
701
|
+
/** Invalid ESCAPE sequence */
|
|
702
|
+
LIKE_ESCAPE_INVALID = 335544702,
|
|
703
|
+
/** Service @1 does not have an */
|
|
704
|
+
SVCNOEXE = 335544703,
|
|
705
|
+
/** Failed to locate host machine. */
|
|
706
|
+
NET_LOOKUP_ERR = 335544704,
|
|
707
|
+
/** Undefined service @1/@2. */
|
|
708
|
+
SERVICE_UNKNOWN = 335544705,
|
|
709
|
+
/** The specified name was not found */
|
|
710
|
+
HOST_UNKNOWN = 335544706,
|
|
711
|
+
/** User does not have GRANT privileges */
|
|
712
|
+
GRANT_NOPRIV_ON_BASE = 335544707,
|
|
713
|
+
/** Ambiguous column reference. */
|
|
714
|
+
DYN_FLD_AMBIGUOUS = 335544708,
|
|
715
|
+
/** Invalid aggregate reference */
|
|
716
|
+
DSQL_AGG_REF_ERR = 335544709,
|
|
717
|
+
/** Navigational stream @1 references a view */
|
|
718
|
+
COMPLEX_VIEW = 335544710,
|
|
719
|
+
/** Attempt to execute an unprepared dynamic */
|
|
720
|
+
UNPREPARED_STMT = 335544711,
|
|
721
|
+
/** Positive value expected */
|
|
722
|
+
EXPEC_POSITIVE = 335544712,
|
|
723
|
+
/** Incorrect values within SQLDA structure */
|
|
724
|
+
DSQL_SQLDA_VALUE_ERR = 335544713,
|
|
725
|
+
/** Invalid blob id */
|
|
726
|
+
INVALID_ARRAY_ID = 335544714,
|
|
727
|
+
/** Operation not supported for EXTERNAL FILE */
|
|
728
|
+
EXTFILE_UNS_OP = 335544715,
|
|
729
|
+
/** Service is currently busy= @1 */
|
|
730
|
+
SVC_IN_USE = 335544716,
|
|
731
|
+
/** Stack size insufficent to execute current */
|
|
732
|
+
ERR_STACK_LIMIT = 335544717,
|
|
733
|
+
/** Invalid key for find operation */
|
|
734
|
+
INVALID_KEY = 335544718,
|
|
735
|
+
/** Unable to complete network request to */
|
|
736
|
+
NETWORK_ERROR = 335544721,
|
|
737
|
+
/** Failed to establish a connection. */
|
|
738
|
+
NET_CONNECT_ERR = 335544722,
|
|
739
|
+
/** Error while listening for an incoming */
|
|
740
|
+
NET_CONNECT_LISTEN_ERR = 335544723,
|
|
741
|
+
/** Failed to establish a secondary connection */
|
|
742
|
+
NET_EVENT_CONNECT_ERR = 335544724,
|
|
743
|
+
/** Error while listening for an incoming */
|
|
744
|
+
NET_EVENT_LISTEN_ERR = 335544725,
|
|
745
|
+
/** Error reading data from the connection. */
|
|
746
|
+
NET_READ_ERR = 335544726,
|
|
747
|
+
/** Error writing data to the connection. */
|
|
748
|
+
NET_WRITE_ERR = 335544727,
|
|
749
|
+
/** Cannot deactivate index used by an */
|
|
750
|
+
INTEG_INDEX_DEACTIVATE = 335544728,
|
|
751
|
+
/** Cannot deactivate index used by a */
|
|
752
|
+
INTEG_DEACTIVATE_PRIMARY = 335544729,
|
|
753
|
+
/** Client/Server Express not supported in this */
|
|
754
|
+
CSE_NOT_SUPPORTED = 335544730,
|
|
755
|
+
/** */
|
|
756
|
+
TRA_MUST_SWEEP = 335544731,
|
|
757
|
+
/** Access to databases on file servers */
|
|
758
|
+
UNSUPPORTED_NETWORK_DRIVE = 335544732,
|
|
759
|
+
/** Error while trying to create file */
|
|
760
|
+
IO_CREATE_ERR = 335544733,
|
|
761
|
+
/** Error while trying to open file */
|
|
762
|
+
IO_OPEN_ERR = 335544734,
|
|
763
|
+
/** Error while trying to close file */
|
|
764
|
+
IO_CLOSE_ERR = 335544735,
|
|
765
|
+
/** Error while trying to read from */
|
|
766
|
+
IO_READ_ERR = 335544736,
|
|
767
|
+
/** Error while trying to write to */
|
|
768
|
+
IO_WRITE_ERR = 335544737,
|
|
769
|
+
/** Error while trying to delete file */
|
|
770
|
+
IO_DELETE_ERR = 335544738,
|
|
771
|
+
/** Error while trying to access file */
|
|
772
|
+
IO_ACCESS_ERR = 335544739,
|
|
773
|
+
/** A fatal exception occurred during the */
|
|
774
|
+
UDF_EXCEPTION = 335544740,
|
|
775
|
+
/** Connection lost to database */
|
|
776
|
+
LOST_DB_CONNECTION = 335544741,
|
|
777
|
+
/** User cannot write to RDB$USER_PRIVILEGES */
|
|
778
|
+
NO_WRITE_USER_PRIV = 335544742,
|
|
779
|
+
/** Token size exceeds limit */
|
|
780
|
+
TOKEN_TOO_LONG = 335544743,
|
|
781
|
+
/** Maximum user count exceeded.Contact your */
|
|
782
|
+
MAX_ATT_EXCEEDED = 335544744,
|
|
783
|
+
/** Your login @1 is same as */
|
|
784
|
+
LOGIN_SAME_AS_ROLE_NAME = 335544745,
|
|
785
|
+
/** "REFERENCES table" without "(column)" */
|
|
786
|
+
REFTABLE_REQUIRES_PK = 335544746,
|
|
787
|
+
/** The username entered is too long.Maximum */
|
|
788
|
+
USRNAME_TOO_LONG = 335544747,
|
|
789
|
+
/** The password specified is too long.Maximum */
|
|
790
|
+
PASSWORD_TOO_LONG = 335544748,
|
|
791
|
+
/** A username is required for this */
|
|
792
|
+
USRNAME_REQUIRED = 335544749,
|
|
793
|
+
/** A password is required for this */
|
|
794
|
+
PASSWORD_REQUIRED = 335544750,
|
|
795
|
+
/** The network protocol specified is invalid */
|
|
796
|
+
BAD_PROTOCOL = 335544751,
|
|
797
|
+
/** A duplicate user name was found */
|
|
798
|
+
DUP_USRNAME_FOUND = 335544752,
|
|
799
|
+
/** The user name specified was not */
|
|
800
|
+
USRNAME_NOT_FOUND = 335544753,
|
|
801
|
+
/** An error occurred while attempting to */
|
|
802
|
+
ERROR_ADDING_SEC_RECORD = 335544754,
|
|
803
|
+
/** An error occurred while attempting to */
|
|
804
|
+
ERROR_MODIFYING_SEC_RECORD = 335544755,
|
|
805
|
+
/** An error occurred while attempting to */
|
|
806
|
+
ERROR_DELETING_SEC_RECORD = 335544756,
|
|
807
|
+
/** An error occurred while updating the */
|
|
808
|
+
ERROR_UPDATING_SEC_DB = 335544757,
|
|
809
|
+
/** Sort record size of @1 bytes */
|
|
810
|
+
SORT_REC_SIZE_ERR = 335544758,
|
|
811
|
+
/** Can not define a not null */
|
|
812
|
+
BAD_DEFAULT_VALUE = 335544759,
|
|
813
|
+
/** Invalid clause--- '@1' */
|
|
814
|
+
INVALID_CLAUSE = 335544760,
|
|
815
|
+
/** Too many open handles to database */
|
|
816
|
+
TOO_MANY_HANDLES = 335544761,
|
|
817
|
+
/** A string constant is delimited by */
|
|
818
|
+
INVALID_STRING_CONSTANT = 335544763,
|
|
819
|
+
/** DATE must be changed to TIMESTAMP */
|
|
820
|
+
TRANSITIONAL_DATE = 335544764,
|
|
821
|
+
/** Attempted update on read-only database */
|
|
822
|
+
READ_ONLY_DATABASE = 335544765,
|
|
823
|
+
/** SQL dialect @1 is not supported */
|
|
824
|
+
MUST_BE_DIALECT_2_AND_UP = 335544766,
|
|
825
|
+
/** A fatal exception occurred during the */
|
|
826
|
+
BLOB_FILTER_EXCEPTION = 335544767,
|
|
827
|
+
/** Access violation.The code attempted to access */
|
|
828
|
+
EXCEPTION_ACCESS_VIOLATION = 335544768,
|
|
829
|
+
/** Datatype misalignment.The attempted to read or */
|
|
830
|
+
EXCEPTION_DATATYPE_MISSALIGNMENT = 335544769,
|
|
831
|
+
/** Array bounds exceeded.The code attempted to */
|
|
832
|
+
EXCEPTION_ARRAY_BOUNDS_EXCEEDED = 335544770,
|
|
833
|
+
/** */
|
|
834
|
+
EXCEPTION_FLOAT_DENORMAL_OPERAN = 335544771,
|
|
835
|
+
/** Floating-point divide by zero.The code attempted */
|
|
836
|
+
EXCEPTION_FLOAT_DIVIDE_BY_ZERO = 335544772,
|
|
837
|
+
/** Floating-point inexact result.The result of a */
|
|
838
|
+
EXCEPTION_FLOAT_INEXACT_RESULT = 335544773,
|
|
839
|
+
/** Floating-point invalid operand.An indeterminant */
|
|
840
|
+
EXCEPTION_FLOAT_INVALID_OPERAND = 335544774,
|
|
841
|
+
/** Floating-point overflow.The exponent of a */
|
|
842
|
+
EXCEPTION_FLOAT_OVERFLOW = 335544775,
|
|
843
|
+
/** Floating-point stack check.The stack overflowed */
|
|
844
|
+
EXCEPTION_FLOAT_STACK_CHECK = 335544776,
|
|
845
|
+
/** Floating-point underflow.The exponent of a */
|
|
846
|
+
EXCEPTION_FLOAT_UNDERFLOW = 335544777,
|
|
847
|
+
/** Integer divide by zero.The code attempted */
|
|
848
|
+
EXCEPTION_INTEGER_DIVIDE_BY_ZERO = 335544778,
|
|
849
|
+
/** Integer overflow.The result of an integer */
|
|
850
|
+
EXCEPTION_INTEGER_OVERFLOW = 335544779,
|
|
851
|
+
/** An exception occurred that does not */
|
|
852
|
+
EXCEPTION_UNKNOWN = 335544780,
|
|
853
|
+
/** Stack overflow.The resource requirements of the */
|
|
854
|
+
EXCEPTION_STACK_OVERFLOW = 335544781,
|
|
855
|
+
/** Segmentation Fault. The code attempted to */
|
|
856
|
+
EXCEPTION_SIGSEGV = 335544782,
|
|
857
|
+
/** Illegal Instruction. The Code attempted to */
|
|
858
|
+
EXCEPTION_SIGILL = 335544783,
|
|
859
|
+
/** Bus Error. The Code caused a */
|
|
860
|
+
EXCEPTION_SIGBUS = 335544784,
|
|
861
|
+
/** Floating Point Error. The Code caused */
|
|
862
|
+
EXCEPTION_SIGFPE = 335544785,
|
|
863
|
+
/** Cannot delete rows from external files. */
|
|
864
|
+
EXT_FILE_DELETE = 335544786,
|
|
865
|
+
/** Cannot update rows in external files. */
|
|
866
|
+
EXT_FILE_MODIFY = 335544787,
|
|
867
|
+
/** Unable to perform operation.You must be */
|
|
868
|
+
ADM_TASK_DENIED = 335544788,
|
|
869
|
+
/** Specified EXTRACT part does not exist */
|
|
870
|
+
EXTRACT_INPUT_MISMATCH = 335544789,
|
|
871
|
+
/** Service @1 requires SYSDBA */
|
|
872
|
+
INSUFFICIENT_SVC_PRIVILEGES = 335544790,
|
|
873
|
+
/** The file @1 is currently in */
|
|
874
|
+
FILE_IN_USE = 335544791,
|
|
875
|
+
/** Cannot attach to services manager */
|
|
876
|
+
SERVICE_ATT_ERR = 335544792,
|
|
877
|
+
/** Metadata update statement is not allowed */
|
|
878
|
+
DDL_NOT_ALLOWED_BY_DB_SQL_DIAL = 335544793,
|
|
879
|
+
/** Operation was cancelled */
|
|
880
|
+
CANCELLED = 335544794,
|
|
881
|
+
/** Unexpected item in service parameter block, */
|
|
882
|
+
UNEXP_SPB_FORM = 335544795,
|
|
883
|
+
/** Client SQL dialect @1 does not */
|
|
884
|
+
SQL_DIALECT_DATATYPE_UNSUPPORT = 335544796,
|
|
885
|
+
/** User name and password are required */
|
|
886
|
+
SVCNOUSER = 335544797,
|
|
887
|
+
/** You created an indirect dependency on */
|
|
888
|
+
DEPEND_ON_UNCOMMITTED_REL = 335544798,
|
|
889
|
+
/** The service name was not specified. */
|
|
890
|
+
SVC_NAME_MISSING = 335544799,
|
|
891
|
+
/** Too many Contexts of Relation/Procedure/Views. */
|
|
892
|
+
TOO_MANY_CONTEXTS = 335544800,
|
|
893
|
+
/** Data type not supported for arithmetic */
|
|
894
|
+
DATYPE_NOTSUP = 335544801,
|
|
895
|
+
/** Database dialect not changed. */
|
|
896
|
+
DIALECT_NOT_CHANGED = 335544803,
|
|
897
|
+
/** Unable to create database @1 */
|
|
898
|
+
DATABASE_CREATE_FAILED = 335544804,
|
|
899
|
+
/** Database dialect @1 is not a */
|
|
900
|
+
INV_DIALECT_SPECIFIED = 335544805,
|
|
901
|
+
/** Valid database dialects are @1. */
|
|
902
|
+
VALID_DB_DIALECTS = 335544806,
|
|
903
|
+
/** Function @1 is in @2, which */
|
|
904
|
+
EXTERN_FUNC_DIR_ERROR = 335544809,
|
|
905
|
+
/** Value exceeds the range for valid */
|
|
906
|
+
DATE_RANGE_EXCEEDED = 335544810,
|
|
907
|
+
/** Passed client dialect @1 is not */
|
|
908
|
+
INV_CLIENT_DIALECT_SPECIFIED = 335544811,
|
|
909
|
+
/** Valid client dialects are @1. */
|
|
910
|
+
VALID_CLIENT_DIALECTS = 335544812,
|
|
911
|
+
/** Unsupported field type specified in BETWEEN */
|
|
912
|
+
OPTIMIZER_BETWEEN_ERR = 335544813,
|
|
913
|
+
/** Services functionality will be supported in */
|
|
914
|
+
SERVICE_NOT_SUPPORTED = 335544814,
|
|
915
|
+
/** GENERATOR @1 */
|
|
916
|
+
GENERATOR_NAME = 335544815,
|
|
917
|
+
/** UDF @1 */
|
|
918
|
+
UDF_NAME = 335544816,
|
|
919
|
+
/** Invalid parameter to FIRST.Only integers >= */
|
|
920
|
+
BAD_LIMIT_PARAM = 335544817,
|
|
921
|
+
/** Invalid parameter to SKIP.Only integers >= */
|
|
922
|
+
BAD_SKIP_PARAM = 335544818,
|
|
923
|
+
/** File exceeded maximum size of 2GB.Add */
|
|
924
|
+
IO_32BIT_EXCEEDED_ERR = 335544819,
|
|
925
|
+
/** Unable to find savepoint with name */
|
|
926
|
+
INVALID_SAVEPOINT = 335544820,
|
|
927
|
+
/** Invalid column position used in the */
|
|
928
|
+
DSQL_COLUMN_POS_ERR = 335544821,
|
|
929
|
+
/** Cannot use an aggregate function in */
|
|
930
|
+
DSQL_AGG_WHERE_ERR = 335544822,
|
|
931
|
+
/** Cannot use an aggregate function in */
|
|
932
|
+
DSQL_AGG_GROUP_ERR = 335544823,
|
|
933
|
+
/** Invalid expression in the @1 (not */
|
|
934
|
+
DSQL_AGG_COLUMN_ERR = 335544824,
|
|
935
|
+
/** Invalid expression in the @1 (neither */
|
|
936
|
+
DSQL_AGG_HAVING_ERR = 335544825,
|
|
937
|
+
/** Nested aggregate functions are not allowed */
|
|
938
|
+
DSQL_AGG_NESTED_ERR = 335544826,
|
|
939
|
+
/** Invalid argument in EXECUTE STATEMENTcannot conver */
|
|
940
|
+
EXEC_SQL_INVALID_ARG = 335544827,
|
|
941
|
+
/** Wrong request type in EXECUTE STATEMENT */
|
|
942
|
+
EXEC_SQL_INVALID_REQ = 335544828,
|
|
943
|
+
/** Variable type (position @1) in EXECUTE */
|
|
944
|
+
EXEC_SQL_INVALID_VAR = 335544829,
|
|
945
|
+
/** Too many recursion levels of EXECUTE */
|
|
946
|
+
EXEC_SQL_MAX_CALL_EXCEEDED = 335544830,
|
|
947
|
+
/** Access to @1 "@2" is denied */
|
|
948
|
+
CONF_ACCESS_DENIED = 335544831,
|
|
949
|
+
/** Cannot change difference file name while */
|
|
950
|
+
WRONG_BACKUP_STATE = 335544832,
|
|
951
|
+
/** Cursor is not open */
|
|
952
|
+
CURSOR_NOT_OPEN = 335544834,
|
|
953
|
+
/** Target shutdown mode is invalid for */
|
|
954
|
+
BAD_SHUTDOWN_MODE = 335544835,
|
|
955
|
+
/** Concatenation overflow. Resulting string cannot */
|
|
956
|
+
CONCAT_OVERFLOW = 335544836,
|
|
957
|
+
/** Invalid offset parameter @1 to SUBSTRING. */
|
|
958
|
+
BAD_SUBSTRING_OFFSET = 335544837,
|
|
959
|
+
/** Foreign key reference target does not */
|
|
960
|
+
FOREIGN_KEY_TARGET_DOESNT_EXIST = 335544838,
|
|
961
|
+
/** Foreign key references are present for */
|
|
962
|
+
FOREIGN_KEY_REFERENCES_PRESENT = 335544839,
|
|
963
|
+
/** Cannot update */
|
|
964
|
+
NO_UPDATE = 335544840,
|
|
965
|
+
/** Cursor is already open */
|
|
966
|
+
CURSOR_ALREADY_OPEN = 335544841,
|
|
967
|
+
/** @1 */
|
|
968
|
+
STACK_TRACE = 335544842,
|
|
969
|
+
/** Context variable @1 is not found */
|
|
970
|
+
CTX_VAR_NOT_FOUND = 335544843,
|
|
971
|
+
/** Invalid namespace name @1 passed to */
|
|
972
|
+
CTX_NAMESPACE_INVALID = 335544844,
|
|
973
|
+
/** Too many context variables */
|
|
974
|
+
CTX_TOO_BIG = 335544845,
|
|
975
|
+
/** Invalid argument passed to @1 */
|
|
976
|
+
CTX_BAD_ARGUMENT = 335544846,
|
|
977
|
+
/** BLR syntax error. Identifier @1... is */
|
|
978
|
+
IDENTIFIER_TOO_LONG = 335544847,
|
|
979
|
+
/** Exception @1 */
|
|
980
|
+
EXCEPT2 = 335544848,
|
|
981
|
+
/** Malformed string */
|
|
982
|
+
MALFORMED_STRING = 335544849,
|
|
983
|
+
/** Output parameter mismatch for procedure @1 */
|
|
984
|
+
PRC_OUT_PARAM_MISMATCH = 335544850,
|
|
985
|
+
/** Unexpected end of command- line @1, */
|
|
986
|
+
COMMAND_END_ERR2 = 335544851,
|
|
987
|
+
/** Partner index segment no @1 has */
|
|
988
|
+
PARTNER_IDX_INCOMPAT_TYPE = 335544852,
|
|
989
|
+
/** Invalid length parameter @1 to SUBSTRING. */
|
|
990
|
+
BAD_SUBSTRING_LENGTH = 335544853,
|
|
991
|
+
/** CHARACTER SET @1 is not installed */
|
|
992
|
+
CHARSET_NOT_INSTALLED = 335544854,
|
|
993
|
+
/** COLLATION @1 for CHARACTER SET @2 */
|
|
994
|
+
COLLATION_NOT_INSTALLED = 335544855,
|
|
995
|
+
/** Connection shutdown */
|
|
996
|
+
ATT_SHUTDOWN = 335544856,
|
|
997
|
+
/** Maximum BLOB size exceeded */
|
|
998
|
+
BLOBTOOBIG = 335544857,
|
|
999
|
+
/** Can't have relation with only computed */
|
|
1000
|
+
MUST_HAVE_PHYS_FIELD = 335544858,
|
|
1001
|
+
/** Time precision exceeds allowed range (0-@1) */
|
|
1002
|
+
INVALID_TIME_PRECISION = 335544859,
|
|
1003
|
+
/** Unsupported conversion to target type BLOB */
|
|
1004
|
+
BLOB_CONVERT_ERROR = 335544860,
|
|
1005
|
+
/** Unsupported conversion to target type ARRAY */
|
|
1006
|
+
ARRAY_CONVERT_ERROR = 335544861,
|
|
1007
|
+
/** Stream does not support record locking */
|
|
1008
|
+
RECORD_LOCK_NOT_SUPP = 335544862,
|
|
1009
|
+
/** Cannot create foreign key constraint @1. */
|
|
1010
|
+
PARTNER_IDX_NOT_FOUND = 335544863,
|
|
1011
|
+
/** Transactions count exceeded. Perform backup and */
|
|
1012
|
+
TRA_NUM_EXC = 335544864,
|
|
1013
|
+
/** Column has been unexpectedly deleted */
|
|
1014
|
+
FIELD_DISAPPEARED = 335544865,
|
|
1015
|
+
/** @1 cannot depend on @2 */
|
|
1016
|
+
MET_WRONG_GTT_SCOPE = 335544866,
|
|
1017
|
+
/** Blob sub_types bigger than 1 (text) */
|
|
1018
|
+
SUBTYPE_FOR_INTERNAL_USE = 335544867,
|
|
1019
|
+
/** Procedure @1 is not selectable (it */
|
|
1020
|
+
ILLEGAL_PRC_TYPE = 335544868,
|
|
1021
|
+
/** Datatype @1 is not supported for */
|
|
1022
|
+
INVALID_SORT_DATATYPE = 335544869,
|
|
1023
|
+
/** COLLATION @1 */
|
|
1024
|
+
COLLATION_NAME = 335544870,
|
|
1025
|
+
/** DOMAIN @1 */
|
|
1026
|
+
DOMAIN_NAME = 335544871,
|
|
1027
|
+
/** Domain @1 is not defined */
|
|
1028
|
+
DOMNOTDEF = 335544872,
|
|
1029
|
+
/** Array data type can use up */
|
|
1030
|
+
ARRAY_MAX_DIMENSIONS = 335544873,
|
|
1031
|
+
/** A multi database transaction cannot span */
|
|
1032
|
+
MAX_DB_PER_TRANS_ALLOWED = 335544874,
|
|
1033
|
+
/** Bad debug info format */
|
|
1034
|
+
BAD_DEBUG_FORMAT = 335544875,
|
|
1035
|
+
/** Error while parsing procedure @1's BLR */
|
|
1036
|
+
BAD_PROC_BLR = 335544876,
|
|
1037
|
+
/** Index key too big */
|
|
1038
|
+
KEY_TOO_BIG = 335544877,
|
|
1039
|
+
/** Concurrent transaction number is @1 */
|
|
1040
|
+
CONCURRENT_TRANSACTION = 335544878,
|
|
1041
|
+
/** Validation error for variable @1, value */
|
|
1042
|
+
NOT_VALID_FOR_VAR = 335544879,
|
|
1043
|
+
/** Validation error for @1, value "@2" */
|
|
1044
|
+
NOT_VALID_FOR = 335544880,
|
|
1045
|
+
/** Difference file name should be set */
|
|
1046
|
+
NEED_DIFFERENCE = 335544881,
|
|
1047
|
+
/** Login name too long (@1 characters, */
|
|
1048
|
+
LONG_LOGIN = 335544882,
|
|
1049
|
+
/** Column @1 is not defined in */
|
|
1050
|
+
FLDNOTDEF2 = 335544883,
|
|
1051
|
+
/** Data base file name (@1) already */
|
|
1052
|
+
GFIX_DB_NAME = 335740929,
|
|
1053
|
+
/** Invalid switch @1 */
|
|
1054
|
+
GFIX_INVALID_SW = 335740930,
|
|
1055
|
+
/** Incompatible switch combination */
|
|
1056
|
+
GFIX_INCMP_SW = 335740932,
|
|
1057
|
+
/** Replay log pathname required */
|
|
1058
|
+
GFIX_REPLAY_REQ = 335740933,
|
|
1059
|
+
/** Number of page buffers for cache */
|
|
1060
|
+
GFIX_PGBUF_REQ = 335740934,
|
|
1061
|
+
/** Numeric value required */
|
|
1062
|
+
GFIX_VAL_REQ = 335740935,
|
|
1063
|
+
/** Positive numeric value required */
|
|
1064
|
+
GFIX_PVAL_REQ = 335740936,
|
|
1065
|
+
/** Number of transactions per sweep required */
|
|
1066
|
+
GFIX_TRN_REQ = 335740937,
|
|
1067
|
+
/** "full" or "reserve" required */
|
|
1068
|
+
GFIX_FULL_REQ = 335740940,
|
|
1069
|
+
/** User name required */
|
|
1070
|
+
GFIX_USRNAME_REQ = 335740941,
|
|
1071
|
+
/** Password required */
|
|
1072
|
+
GFIX_PASS_REQ = 335740942,
|
|
1073
|
+
/** Subsystem name */
|
|
1074
|
+
GFIX_SUBS_NAME = 335740943,
|
|
1075
|
+
/** Number of seconds required */
|
|
1076
|
+
GFIX_SEC_REQ = 335740945,
|
|
1077
|
+
/** Numeric value between 0 and 32767 */
|
|
1078
|
+
GFIX_NVAL_REQ = 335740946,
|
|
1079
|
+
/** Must specify type of shutdown */
|
|
1080
|
+
GFIX_TYPE_SHUT = 335740947,
|
|
1081
|
+
/** Please retry, specifying an option */
|
|
1082
|
+
GFIX_RETRY = 335740948,
|
|
1083
|
+
/** Please retry, giving a database name */
|
|
1084
|
+
GFIX_RETRY_DB = 335740951,
|
|
1085
|
+
/** Internal block exceeds maximum size */
|
|
1086
|
+
GFIX_EXCEED_MAX = 335740991,
|
|
1087
|
+
/** Corrupt pool */
|
|
1088
|
+
GFIX_CORRUPT_POOL = 335740992,
|
|
1089
|
+
/** Virtual memory exhausted */
|
|
1090
|
+
GFIX_MEM_EXHAUSTED = 335740993,
|
|
1091
|
+
/** Bad pool id */
|
|
1092
|
+
GFIX_BAD_POOL = 335740994,
|
|
1093
|
+
/** Transaction state @1 not in valid */
|
|
1094
|
+
GFIX_TRN_NOT_VALID = 335740995,
|
|
1095
|
+
/** Unexpected end of input */
|
|
1096
|
+
GFIX_UNEXP_EOI = 335741012,
|
|
1097
|
+
/** Failed to reconnect to a transaction */
|
|
1098
|
+
GFIX_RECON_FAIL = 335741018,
|
|
1099
|
+
/** Transaction description item unknown */
|
|
1100
|
+
GFIX_TRN_UNKNOWN = 335741036,
|
|
1101
|
+
/** "read_only" or "read_write" required */
|
|
1102
|
+
GFIX_MODE_REQ = 335741038,
|
|
1103
|
+
/** -sql_dialect set database dialect n */
|
|
1104
|
+
GFIX_OPT_SQL_DIALECT = 335741039,
|
|
1105
|
+
/** Positive or zero numeric value required */
|
|
1106
|
+
GFIX_PZVAL_REQ = 335741042,
|
|
1107
|
+
/** Cannot SELECT RDB$DB_KEY from a stored */
|
|
1108
|
+
DSQL_DBKEY_FROM_NON_TABLE = 336003074,
|
|
1109
|
+
/** Precision 10 to 18 changed from */
|
|
1110
|
+
DSQL_TRANSITIONAL_NUMERIC = 336003075,
|
|
1111
|
+
/** Database SQL dialect @1 does not */
|
|
1112
|
+
SQL_DB_DIALECT_DTYPE_UNSUPPORT = 336003077,
|
|
1113
|
+
/** DB dialect @1 and client dialect */
|
|
1114
|
+
ISC_SQL_DIALECT_CONFLICT_NUM = 336003079,
|
|
1115
|
+
/** Ambiguous field name between @1 and */
|
|
1116
|
+
DSQL_AMBIGUOUS_FIELD_NAME = 336003085,
|
|
1117
|
+
/** External function should have return position */
|
|
1118
|
+
DSQL_UDF_RETURN_POS_ERR = 336003086,
|
|
1119
|
+
/** Label @1 @2 in the current */
|
|
1120
|
+
DSQL_INVALID_LABEL = 336003087,
|
|
1121
|
+
/** Datatypes @1are not comparable in expression */
|
|
1122
|
+
DSQL_DATATYPES_NOT_COMPARABLE = 336003088,
|
|
1123
|
+
/** Empty cursor name is not allowed */
|
|
1124
|
+
DSQL_CURSOR_INVALID = 336003089,
|
|
1125
|
+
/** Statement already has a cursor @1 */
|
|
1126
|
+
DSQL_CURSOR_REDEFINED = 336003090,
|
|
1127
|
+
/** Cursor @1 is not found in */
|
|
1128
|
+
DSQL_CURSOR_NOT_FOUND = 336003091,
|
|
1129
|
+
/** Cursor @1 already exists in the */
|
|
1130
|
+
DSQL_CURSOR_EXISTS = 336003092,
|
|
1131
|
+
/** Relation @1 is ambiguous in cursor */
|
|
1132
|
+
DSQL_CURSOR_REL_AMBIGUOUS = 336003093,
|
|
1133
|
+
/** Relation @1 is not found in */
|
|
1134
|
+
DSQL_CURSOR_REL_NOT_FOUND = 336003094,
|
|
1135
|
+
/** Cursor is not open */
|
|
1136
|
+
DSQL_CURSOR_NOT_OPEN = 336003095,
|
|
1137
|
+
/** Data type @1 is not supported */
|
|
1138
|
+
DSQL_TYPE_NOT_SUPP_EXT_TAB = 336003096,
|
|
1139
|
+
/** Feature not supported on ODS version */
|
|
1140
|
+
DSQL_FEATURE_NOT_SUPPORTED_ODS = 336003097,
|
|
1141
|
+
/** Primary key required on table @1 */
|
|
1142
|
+
PRIMARY_KEY_REQUIRED = 336003098,
|
|
1143
|
+
/** UPDATE OR INSERT field list does */
|
|
1144
|
+
UPD_INS_DOESNT_MATCH_PK = 336003099,
|
|
1145
|
+
/** UPDATE OR INSERT field list does */
|
|
1146
|
+
UPD_INS_DOESNT_MATCH_MATCHING = 336003100,
|
|
1147
|
+
/** UPDATE OR INSERT without MATCHING */
|
|
1148
|
+
UPD_INS_WITH_COMPLEX_VIEW = 336003101,
|
|
1149
|
+
/** Incompatible trigger type */
|
|
1150
|
+
DSQL_INCOMPATIBLE_TRIGGER_TYPE = 336003102,
|
|
1151
|
+
/** Database trigger type can't be changed */
|
|
1152
|
+
DSQL_DB_TRIGGER_TYPE_CANT_CHANGE = 336003103,
|
|
1153
|
+
/** SQL role @1 does not exist */
|
|
1154
|
+
DYN_ROLE_DOES_NOT_EXIST = 336068796,
|
|
1155
|
+
/** User @1 has no grant admin */
|
|
1156
|
+
DYN_NO_GRANT_ADMIN_OPT = 336068797,
|
|
1157
|
+
/** User @1 is not a member */
|
|
1158
|
+
DYN_USER_NOT_ROLE_MEMBER = 336068798,
|
|
1159
|
+
/** @1 is not the owner of */
|
|
1160
|
+
DYN_DELETE_ROLE_FAILED = 336068799,
|
|
1161
|
+
/** @1 is a SQL role and */
|
|
1162
|
+
DYN_GRANT_ROLE_TO_USER = 336068800,
|
|
1163
|
+
/** User name @1 could not be */
|
|
1164
|
+
DYN_INV_SQL_ROLE_NAME = 336068801,
|
|
1165
|
+
/** SQL role @1 already exists */
|
|
1166
|
+
DYN_DUP_SQL_ROLE = 336068802,
|
|
1167
|
+
/** Keyword @1 can not be used */
|
|
1168
|
+
DYN_KYWD_SPEC_FOR_ROLE = 336068803,
|
|
1169
|
+
/** SQL roles are not supported in */
|
|
1170
|
+
DYN_ROLES_NOT_SUPPORTED = 336068804,
|
|
1171
|
+
/** Cannot rename domain @1 to @2.A */
|
|
1172
|
+
DYN_DOMAIN_NAME_EXISTS = 336068812,
|
|
1173
|
+
/** Cannot rename column @1 to @2.A */
|
|
1174
|
+
DYN_FIELD_NAME_EXISTS = 336068813,
|
|
1175
|
+
/** Column @1 from table @2 is */
|
|
1176
|
+
DYN_DEPENDENCY_EXISTS = 336068814,
|
|
1177
|
+
/** Cannot change datatype for column @1.Changing */
|
|
1178
|
+
DYN_DTYPE_INVALID = 336068815,
|
|
1179
|
+
/** New size specified for column @1 */
|
|
1180
|
+
DYN_CHAR_FLD_TOO_SMALL = 336068816,
|
|
1181
|
+
/** Cannot change datatype for @1.Conversion from */
|
|
1182
|
+
DYN_INVALID_DTYPE_CONVERSION = 336068817,
|
|
1183
|
+
/** Cannot change datatype for column @1 */
|
|
1184
|
+
DYN_DTYPE_CONV_INVALID = 336068818,
|
|
1185
|
+
/** Zero length identifiers are not allowed */
|
|
1186
|
+
DYN_ZERO_LEN_ID = 336068820,
|
|
1187
|
+
/** Maximum number of collations per character */
|
|
1188
|
+
MAX_COLL_PER_CHARSET = 336068829,
|
|
1189
|
+
/** Invalid collation attributes */
|
|
1190
|
+
INVALID_COLL_ATTR = 336068830,
|
|
1191
|
+
/** @1 cannot reference @2 */
|
|
1192
|
+
DYN_WRONG_GTT_SCOPE = 336068840,
|
|
1193
|
+
/** New scale specified for column @1 */
|
|
1194
|
+
DYN_SCALE_TOO_BIG = 336068852,
|
|
1195
|
+
/** New precision specified for column @1 */
|
|
1196
|
+
DYN_PRECISION_TOO_SMALL = 336068853,
|
|
1197
|
+
/** Feature '@1' is not supported in */
|
|
1198
|
+
DYN_ODS_NOT_SUPP_FEATURE = 336068856,
|
|
1199
|
+
/** Found unknown switch */
|
|
1200
|
+
GBAK_UNKNOWN_SWITCH = 336330753,
|
|
1201
|
+
/** Page size parameter missing */
|
|
1202
|
+
GBAK_PAGE_SIZE_MISSING = 336330754,
|
|
1203
|
+
/** Page size specified (@1) greater than */
|
|
1204
|
+
GBAK_PAGE_SIZE_TOOBIG = 336330755,
|
|
1205
|
+
/** Redirect location for output is not */
|
|
1206
|
+
GBAK_REDIR_OUPUT_MISSING = 336330756,
|
|
1207
|
+
/** Conflicting switches for backup/restore */
|
|
1208
|
+
GBAK_SWITCHES_CONFLICT = 336330757,
|
|
1209
|
+
/** Device type @1 not known */
|
|
1210
|
+
GBAK_UNKNOWN_DEVICE = 336330758,
|
|
1211
|
+
/** Protection is not there yet */
|
|
1212
|
+
GBAK_NO_PROTECTION = 336330759,
|
|
1213
|
+
/** Page size is allowed only on */
|
|
1214
|
+
GBAK_PAGE_SIZE_NOT_ALLOWED = 336330760,
|
|
1215
|
+
/** Multiple sources or destinations specified */
|
|
1216
|
+
GBAK_MULTI_SOURCE_DEST = 336330761,
|
|
1217
|
+
/** Requires both input and output filenames */
|
|
1218
|
+
GBAK_FILENAME_MISSING = 336330762,
|
|
1219
|
+
/** Input and output have the same */
|
|
1220
|
+
GBAK_DUP_INOUT_NAMES = 336330763,
|
|
1221
|
+
/** Expected page size, encountered "@1" */
|
|
1222
|
+
GBAK_INV_PAGE_SIZE = 336330764,
|
|
1223
|
+
/** REPLACE specified, but the first file */
|
|
1224
|
+
GBAK_DB_SPECIFIED = 336330765,
|
|
1225
|
+
/** Database @1 already exists.To replace it, */
|
|
1226
|
+
GBAK_DB_EXISTS = 336330766,
|
|
1227
|
+
/** Device type not specified */
|
|
1228
|
+
GBAK_UNK_DEVICE = 336330767,
|
|
1229
|
+
/** Gds_$blob_info failed */
|
|
1230
|
+
GBAK_BLOB_INFO_FAILED = 336330772,
|
|
1231
|
+
/** Do not understand BLOB INFO item */
|
|
1232
|
+
GBAK_UNK_BLOB_ITEM = 336330773,
|
|
1233
|
+
/** Gds_$get_segment failed */
|
|
1234
|
+
GBAK_GET_SEG_FAILED = 336330774,
|
|
1235
|
+
/** Gds_$close_blob failed */
|
|
1236
|
+
GBAK_CLOSE_BLOB_FAILED = 336330775,
|
|
1237
|
+
/** Gds_$open_blob failed */
|
|
1238
|
+
GBAK_OPEN_BLOB_FAILED = 336330776,
|
|
1239
|
+
/** Failed in put_blr_gen_id */
|
|
1240
|
+
GBAK_PUT_BLR_GEN_ID_FAILED = 336330777,
|
|
1241
|
+
/** Data type @1 not understood */
|
|
1242
|
+
GBAK_UNK_TYPE = 336330778,
|
|
1243
|
+
/** Gds_$compile_request failed */
|
|
1244
|
+
GBAK_COMP_REQ_FAILED = 336330779,
|
|
1245
|
+
/** Gds_$start_request failed */
|
|
1246
|
+
GBAK_START_REQ_FAILED = 336330780,
|
|
1247
|
+
/** gds_$receive failed */
|
|
1248
|
+
GBAK_REC_FAILED = 336330781,
|
|
1249
|
+
/** Gds_$release_request failed */
|
|
1250
|
+
GBAK_REL_REQ_FAILED = 336330782,
|
|
1251
|
+
/** gds_$database_info failed */
|
|
1252
|
+
GBAK_DB_INFO_FAILED = 336330783,
|
|
1253
|
+
/** Expected database description record */
|
|
1254
|
+
GBAK_NO_DB_DESC = 336330784,
|
|
1255
|
+
/** Failed to create database @1 */
|
|
1256
|
+
GBAK_DB_CREATE_FAILED = 336330785,
|
|
1257
|
+
/** RESTORE= decompression length error */
|
|
1258
|
+
GBAK_DECOMP_LEN_ERROR = 336330786,
|
|
1259
|
+
/** Cannot find table @1 */
|
|
1260
|
+
GBAK_TBL_MISSING = 336330787,
|
|
1261
|
+
/** Cannot find column for BLOB */
|
|
1262
|
+
GBAK_BLOB_COL_MISSING = 336330788,
|
|
1263
|
+
/** Gds_$create_blob failed */
|
|
1264
|
+
GBAK_CREATE_BLOB_FAILED = 336330789,
|
|
1265
|
+
/** Gds_$put_segment failed */
|
|
1266
|
+
GBAK_PUT_SEG_FAILED = 336330790,
|
|
1267
|
+
/** Expected record length */
|
|
1268
|
+
GBAK_REC_LEN_EXP = 336330791,
|
|
1269
|
+
/** Wrong length record, expected @1 encountered */
|
|
1270
|
+
GBAK_INV_REC_LEN = 336330792,
|
|
1271
|
+
/** Expected data attribute */
|
|
1272
|
+
GBAK_EXP_DATA_TYPE = 336330793,
|
|
1273
|
+
/** Failed in store_blr_gen_id */
|
|
1274
|
+
GBAK_GEN_ID_FAILED = 336330794,
|
|
1275
|
+
/** Do not recognize record type @1 */
|
|
1276
|
+
GBAK_UNK_REC_TYPE = 336330795,
|
|
1277
|
+
/** Expected backup version 1..8.Found @1 */
|
|
1278
|
+
GBAK_INV_BKUP_VER = 336330796,
|
|
1279
|
+
/** Expected backup description record */
|
|
1280
|
+
GBAK_MISSING_BKUP_DESC = 336330797,
|
|
1281
|
+
/** String truncated */
|
|
1282
|
+
GBAK_STRING_TRUNC = 336330798,
|
|
1283
|
+
/** warning-- record could not be restored */
|
|
1284
|
+
GBAK_CANT_REST_RECORD = 336330799,
|
|
1285
|
+
/** Gds_$send failed */
|
|
1286
|
+
GBAK_SEND_FAILED = 336330800,
|
|
1287
|
+
/** No table name for data */
|
|
1288
|
+
GBAK_NO_TBL_NAME = 336330801,
|
|
1289
|
+
/** Unexpected end of file on backup */
|
|
1290
|
+
GBAK_UNEXP_EOF = 336330802,
|
|
1291
|
+
/** Database format @1 is too old */
|
|
1292
|
+
GBAK_DB_FORMAT_TOO_OLD = 336330803,
|
|
1293
|
+
/** Array dimension for column @1 is */
|
|
1294
|
+
GBAK_INV_ARRAY_DIM = 336330804,
|
|
1295
|
+
/** Expected XDR record length */
|
|
1296
|
+
GBAK_XDR_LEN_EXPECTED = 336330807,
|
|
1297
|
+
/** Cannot open backup file @1 */
|
|
1298
|
+
GBAK_OPEN_BKUP_ERROR = 336330817,
|
|
1299
|
+
/** Cannot open status and error output */
|
|
1300
|
+
GBAK_OPEN_ERROR = 336330818,
|
|
1301
|
+
/** Blocking factor parameter missing */
|
|
1302
|
+
GBAK_MISSING_BLOCK_FAC = 336330934,
|
|
1303
|
+
/** Expected blocking factor, encountered "@1" */
|
|
1304
|
+
GBAK_INV_BLOCK_FAC = 336330935,
|
|
1305
|
+
/** A blocking factor may not be */
|
|
1306
|
+
GBAK_BLOCK_FAC_SPECIFIED = 336330936,
|
|
1307
|
+
/** User name parameter missing */
|
|
1308
|
+
GBAK_MISSING_USERNAME = 336330940,
|
|
1309
|
+
/** Password parameter missing */
|
|
1310
|
+
GBAK_MISSING_PASSWORD = 336330941,
|
|
1311
|
+
/** missing parameter for the number of */
|
|
1312
|
+
GBAK_MISSING_SKIPPED_BYTES = 336330952,
|
|
1313
|
+
/** Expected number of bytes to be */
|
|
1314
|
+
GBAK_INV_SKIPPED_BYTES = 336330953,
|
|
1315
|
+
/** Character set */
|
|
1316
|
+
GBAK_ERR_RESTORE_CHARSET = 336330965,
|
|
1317
|
+
/** Collation */
|
|
1318
|
+
GBAK_ERR_RESTORE_COLLATION = 336330967,
|
|
1319
|
+
/** Unexpected I/O error while reading from */
|
|
1320
|
+
GBAK_READ_ERROR = 336330972,
|
|
1321
|
+
/** Unexpected I/O error while writing to */
|
|
1322
|
+
GBAK_WRITE_ERROR = 336330973,
|
|
1323
|
+
/** Could not drop database @1 (database */
|
|
1324
|
+
GBAK_DB_IN_USE = 336330985,
|
|
1325
|
+
/** System memory exhausted */
|
|
1326
|
+
GBAK_SYSMEMEX = 336330990,
|
|
1327
|
+
/** SQL role */
|
|
1328
|
+
GBAK_RESTORE_ROLE_FAILED = 336331002,
|
|
1329
|
+
/** SQL role parameter missing */
|
|
1330
|
+
GBAK_ROLE_OP_MISSING = 336331005,
|
|
1331
|
+
/** Page buffers parameter missing */
|
|
1332
|
+
GBAK_PAGE_BUFFERS_MISSING = 336331010,
|
|
1333
|
+
/** Expected page buffers, encountered "@1" */
|
|
1334
|
+
GBAK_PAGE_BUFFERS_WRONG_PARAM = 336331011,
|
|
1335
|
+
/** Page buffers is allowed only on */
|
|
1336
|
+
GBAK_PAGE_BUFFERS_RESTORE = 336331012,
|
|
1337
|
+
/** Size specification either missing or incorrect */
|
|
1338
|
+
GBAK_INV_SIZE = 336331014,
|
|
1339
|
+
/** File @1 out of sequence */
|
|
1340
|
+
GBAK_FILE_OUTOF_SEQUENCE = 336331015,
|
|
1341
|
+
/** Can't join-- one of the files */
|
|
1342
|
+
GBAK_JOIN_FILE_MISSING = 336331016,
|
|
1343
|
+
/** standard input is not supported when */
|
|
1344
|
+
GBAK_STDIN_NOT_SUPPTD = 336331017,
|
|
1345
|
+
/** Standard output is not supported when */
|
|
1346
|
+
GBAK_STDOUT_NOT_SUPPTD = 336331018,
|
|
1347
|
+
/** Backup file @1 might be corrupt */
|
|
1348
|
+
GBAK_BKUP_CORRUPT = 336331019,
|
|
1349
|
+
/** Database file specification missing */
|
|
1350
|
+
GBAK_UNK_DB_FILE_SPEC = 336331020,
|
|
1351
|
+
/** Can't write a header record to */
|
|
1352
|
+
GBAK_HDR_WRITE_FAILED = 336331021,
|
|
1353
|
+
/** Free disk space exhausted */
|
|
1354
|
+
GBAK_DISK_SPACE_EX = 336331022,
|
|
1355
|
+
/** File size given (@1) is less */
|
|
1356
|
+
GBAK_SIZE_LT_MIN = 336331023,
|
|
1357
|
+
/** Service name parameter missing */
|
|
1358
|
+
GBAK_SVC_NAME_MISSING = 336331025,
|
|
1359
|
+
/** Cannot restore over current database, must */
|
|
1360
|
+
GBAK_NOT_OWNR = 336331026,
|
|
1361
|
+
/** "read_only" or "read_write" required */
|
|
1362
|
+
GBAK_MODE_REQ = 336331031,
|
|
1363
|
+
/** Just data ignore all constraints etc. */
|
|
1364
|
+
GBAK_JUST_DATA = 336331033,
|
|
1365
|
+
/** Restoring data only ignoring foreign key, */
|
|
1366
|
+
GBAK_DATA_ONLY = 336331034,
|
|
1367
|
+
/** ODS versions before ODS@1 are not */
|
|
1368
|
+
DSQL_TOO_OLD_ODS = 336397205,
|
|
1369
|
+
/** Table @1 does not exist */
|
|
1370
|
+
DSQL_TABLE_NOT_FOUND = 336397206,
|
|
1371
|
+
/** View @1 does not exist */
|
|
1372
|
+
DSQL_VIEW_NOT_FOUND = 336397207,
|
|
1373
|
+
/** At line @1, column @2 */
|
|
1374
|
+
DSQL_LINE_COL_ERROR = 336397208,
|
|
1375
|
+
/** At unknown line and column */
|
|
1376
|
+
DSQL_UNKNOWN_POS = 336397209,
|
|
1377
|
+
/** Column @1 cannot be repeated in */
|
|
1378
|
+
DSQL_NO_DUP_NAME = 336397210,
|
|
1379
|
+
/** Too many values (more than @1) */
|
|
1380
|
+
DSQL_TOO_MANY_VALUES = 336397211,
|
|
1381
|
+
/** Array and BLOB data types not */
|
|
1382
|
+
DSQL_NO_ARRAY_COMPUTED = 336397212,
|
|
1383
|
+
/** Implicit domain name @1 not allowed */
|
|
1384
|
+
DSQL_IMPLICIT_DOMAIN_NAME = 336397213,
|
|
1385
|
+
/** Scalar operator used on field @1 */
|
|
1386
|
+
DSQL_ONLY_CAN_SUBSCRIPT_ARRAY = 336397214,
|
|
1387
|
+
/** Cannot sort on more than 255 */
|
|
1388
|
+
DSQL_MAX_SORT_ITEMS = 336397215,
|
|
1389
|
+
/** Cannot group on more than 255 */
|
|
1390
|
+
DSQL_MAX_GROUP_ITEMS = 336397216,
|
|
1391
|
+
/** Cannot include the same field (@1.@2) */
|
|
1392
|
+
DSQL_CONFLICTING_SORT_FIELD = 336397217,
|
|
1393
|
+
/** Column list from derived table @1 */
|
|
1394
|
+
DSQL_DERIVED_TABLE_MORE_COLUMNS = 336397218,
|
|
1395
|
+
/** Column list from derived table @1 */
|
|
1396
|
+
DSQL_DERIVED_TABLE_LESS_COLUMNS = 336397219,
|
|
1397
|
+
/** No column name specified for column */
|
|
1398
|
+
DSQL_DERIVED_FIELD_UNNAMED = 336397220,
|
|
1399
|
+
/** Column @1 was specified multiple times */
|
|
1400
|
+
DSQL_DERIVED_FIELD_DUP_NAME = 336397221,
|
|
1401
|
+
/** Internal dsql error= alias type expected */
|
|
1402
|
+
DSQL_DERIVED_ALIAS_SELECT = 336397222,
|
|
1403
|
+
/** Internal dsql error= alias type expected */
|
|
1404
|
+
DSQL_DERIVED_ALIAS_FIELD = 336397223,
|
|
1405
|
+
/** Internal dsql error= column position out */
|
|
1406
|
+
DSQL_AUTO_FIELD_BAD_POS = 336397224,
|
|
1407
|
+
/** Recursive CTE member (@1) can refer */
|
|
1408
|
+
DSQL_CTE_WRONG_REFERENCE = 336397225,
|
|
1409
|
+
/** CTE '@1' has cyclic dependencies */
|
|
1410
|
+
DSQL_CTE_CYCLE = 336397226,
|
|
1411
|
+
/** Recursive member of CTE can't be */
|
|
1412
|
+
DSQL_CTE_OUTER_JOIN = 336397227,
|
|
1413
|
+
/** Recursive member of CTE can't reference */
|
|
1414
|
+
DSQL_CTE_MULT_REFERENCES = 336397228,
|
|
1415
|
+
/** Recursive CTE (@1) must be an */
|
|
1416
|
+
DSQL_CTE_NOT_A_UNION = 336397229,
|
|
1417
|
+
/** CTE '@1' defined non-recursive member after */
|
|
1418
|
+
DSQL_CTE_NONRECURS_AFTER_RECURS = 336397230,
|
|
1419
|
+
/** Recursive member of CTE '@1' has */
|
|
1420
|
+
DSQL_CTE_WRONG_CLAUSE = 336397231,
|
|
1421
|
+
/** Recursive members of CTE (@1) must */
|
|
1422
|
+
DSQL_CTE_UNION_ALL = 336397232,
|
|
1423
|
+
/** Non-recursive member is missing in CTE */
|
|
1424
|
+
DSQL_CTE_MISS_NONRECURSIVE = 336397233,
|
|
1425
|
+
/** WITH clause can't be nested */
|
|
1426
|
+
DSQL_CTE_NESTED_WITH = 336397234,
|
|
1427
|
+
/** Column @1 appears more than once */
|
|
1428
|
+
DSQL_COL_MORE_THAN_ONCE_USING = 336397235,
|
|
1429
|
+
/** Feature is not supported in dialect */
|
|
1430
|
+
DSQL_UNSUPP_FEATURE_DIALECT = 336397236,
|
|
1431
|
+
/** CTE "@1" is not used in */
|
|
1432
|
+
DSQL_CTE_NOT_USED = 336397237,
|
|
1433
|
+
/** Unable to open database */
|
|
1434
|
+
GSEC_CANT_OPEN_DB = 336723983,
|
|
1435
|
+
/** Error in switch specifications */
|
|
1436
|
+
GSEC_SWITCHES_ERROR = 336723984,
|
|
1437
|
+
/** No operation specified */
|
|
1438
|
+
GSEC_NO_OP_SPEC = 336723985,
|
|
1439
|
+
/** No user name specified */
|
|
1440
|
+
GSEC_NO_USR_NAME = 336723986,
|
|
1441
|
+
/** Add record error */
|
|
1442
|
+
GSEC_ERR_ADD = 336723987,
|
|
1443
|
+
/** Modify record error */
|
|
1444
|
+
GSEC_ERR_MODIFY = 336723988,
|
|
1445
|
+
/** Find/modify record error */
|
|
1446
|
+
GSEC_ERR_FIND_MOD = 336723989,
|
|
1447
|
+
/** Record not found for user= @1 */
|
|
1448
|
+
GSEC_ERR_REC_NOT_FOUND = 336723990,
|
|
1449
|
+
/** Delete record error */
|
|
1450
|
+
GSEC_ERR_DELETE = 336723991,
|
|
1451
|
+
/** Find/delete record error */
|
|
1452
|
+
GSEC_ERR_FIND_DEL = 336723992,
|
|
1453
|
+
/** Find/display record error */
|
|
1454
|
+
GSEC_ERR_FIND_DISP = 336723996,
|
|
1455
|
+
/** Invalid parameter, no switch defined */
|
|
1456
|
+
GSEC_INV_PARAM = 336723997,
|
|
1457
|
+
/** Operation already specified */
|
|
1458
|
+
GSEC_OP_SPECIFIED = 336723998,
|
|
1459
|
+
/** Password already specified */
|
|
1460
|
+
GSEC_PW_SPECIFIED = 336723999,
|
|
1461
|
+
/** Uid already specified */
|
|
1462
|
+
GSEC_UID_SPECIFIED = 336724000,
|
|
1463
|
+
/** Gid already specified */
|
|
1464
|
+
GSEC_GID_SPECIFIED = 336724001,
|
|
1465
|
+
/** Project already specified */
|
|
1466
|
+
GSEC_PROJ_SPECIFIED = 336724002,
|
|
1467
|
+
/** Organization already specified */
|
|
1468
|
+
GSEC_ORG_SPECIFIED = 336724003,
|
|
1469
|
+
/** First name already specified */
|
|
1470
|
+
GSEC_FNAME_SPECIFIED = 336724004,
|
|
1471
|
+
/** Middle name already specified */
|
|
1472
|
+
GSEC_MNAME_SPECIFIED = 336724005,
|
|
1473
|
+
/** Last name already specified */
|
|
1474
|
+
GSEC_LNAME_SPECIFIED = 336724006,
|
|
1475
|
+
/** Invalid switch specified */
|
|
1476
|
+
GSEC_INV_SWITCH = 336724008,
|
|
1477
|
+
/** Ambiguous switch specified */
|
|
1478
|
+
GSEC_AMB_SWITCH = 336724009,
|
|
1479
|
+
/** No operation specified for parameters */
|
|
1480
|
+
GSEC_NO_OP_SPECIFIED = 336724010,
|
|
1481
|
+
/** No parameters allowed for this operation */
|
|
1482
|
+
GSEC_PARAMS_NOT_ALLOWED = 336724011,
|
|
1483
|
+
/** Incompatible switches specified */
|
|
1484
|
+
GSEC_INCOMPAT_SWITCH = 336724012,
|
|
1485
|
+
/** Invalid user name (maximum 31 bytes */
|
|
1486
|
+
GSEC_INV_USERNAME = 336724044,
|
|
1487
|
+
/** Warning- maximum 8 significant bytes of */
|
|
1488
|
+
GSEC_INV_PW_LENGTH = 336724045,
|
|
1489
|
+
/** Database already specified */
|
|
1490
|
+
GSEC_DB_SPECIFIED = 336724046,
|
|
1491
|
+
/** Database administrator name already specified */
|
|
1492
|
+
GSEC_DB_ADMIN_SPECIFIED = 336724047,
|
|
1493
|
+
/** Database administrator password already */
|
|
1494
|
+
GSEC_DB_ADMIN_PW_SPECIFIED = 336724048,
|
|
1495
|
+
/** SQL role name already specified */
|
|
1496
|
+
GSEC_SQL_ROLE_SPECIFIED = 336724049,
|
|
1497
|
+
/** Found unknown switch */
|
|
1498
|
+
GSTAT_UNKNOWN_SWITCH = 336920577,
|
|
1499
|
+
/** Please retry, giving a database name */
|
|
1500
|
+
GSTAT_RETRY = 336920578,
|
|
1501
|
+
/** Wrong ODS version, expected @1, encountered */
|
|
1502
|
+
GSTAT_WRONG_ODS = 336920579,
|
|
1503
|
+
/** Unexpected end of database file. */
|
|
1504
|
+
GSTAT_UNEXPECTED_EOF = 336920580,
|
|
1505
|
+
/** Can't open database file @1 */
|
|
1506
|
+
GSTAT_OPEN_ERR = 336920605,
|
|
1507
|
+
/** Can't read a database page */
|
|
1508
|
+
GSTAT_READ_ERR = 336920606,
|
|
1509
|
+
/** System memory exhausted */
|
|
1510
|
+
GSTAT_SYSMEMEX = 336920607,
|
|
1511
|
+
/** Wrong value for access mode */
|
|
1512
|
+
FBSVCMGR_BAD_AM = 336986113,
|
|
1513
|
+
/** Wrong value for write mode */
|
|
1514
|
+
FBSVCMGR_BAD_WM = 336986114,
|
|
1515
|
+
/** Wrong value for reserve space */
|
|
1516
|
+
FBSVCMGR_BAD_RS = 336986115,
|
|
1517
|
+
/** Unknown tag (@1) in info_svr_db_info block */
|
|
1518
|
+
FBSVCMGR_INFO_ERR = 336986116,
|
|
1519
|
+
/** Unknown tag (@1) in isc_svc_query() results */
|
|
1520
|
+
FBSVCMGR_QUERY_ERR = 336986117,
|
|
1521
|
+
/** Unknown switch "@1" */
|
|
1522
|
+
FBSVCMGR_SWITCH_UNKNOWN = 336986118
|
|
1523
|
+
}
|
|
1524
|
+
}
|