rubyfb 0.5.2-x86-mswin32-60

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.
Files changed (77) hide show
  1. data/CHANGELOG +6 -0
  2. data/LICENSE +411 -0
  3. data/Manifest +75 -0
  4. data/README +460 -0
  5. data/Rakefile +21 -0
  6. data/examples/example01.rb +65 -0
  7. data/ext/AddUser.c +464 -0
  8. data/ext/AddUser.h +37 -0
  9. data/ext/Backup.c +783 -0
  10. data/ext/Backup.h +37 -0
  11. data/ext/Blob.c +421 -0
  12. data/ext/Blob.h +65 -0
  13. data/ext/Common.c +54 -0
  14. data/ext/Common.h +37 -0
  15. data/ext/Connection.c +863 -0
  16. data/ext/Connection.h +50 -0
  17. data/ext/DataArea.c +274 -0
  18. data/ext/DataArea.h +38 -0
  19. data/ext/Database.c +449 -0
  20. data/ext/Database.h +48 -0
  21. data/ext/FireRuby.c +240 -0
  22. data/ext/FireRuby.h +50 -0
  23. data/ext/FireRubyException.c +268 -0
  24. data/ext/FireRubyException.h +51 -0
  25. data/ext/Generator.c +689 -0
  26. data/ext/Generator.h +53 -0
  27. data/ext/RemoveUser.c +212 -0
  28. data/ext/RemoveUser.h +37 -0
  29. data/ext/Restore.c +855 -0
  30. data/ext/Restore.h +37 -0
  31. data/ext/ResultSet.c +810 -0
  32. data/ext/ResultSet.h +60 -0
  33. data/ext/Row.c +965 -0
  34. data/ext/Row.h +55 -0
  35. data/ext/ServiceManager.c +316 -0
  36. data/ext/ServiceManager.h +48 -0
  37. data/ext/Services.c +124 -0
  38. data/ext/Services.h +42 -0
  39. data/ext/Statement.c +785 -0
  40. data/ext/Statement.h +62 -0
  41. data/ext/Transaction.c +684 -0
  42. data/ext/Transaction.h +50 -0
  43. data/ext/TypeMap.c +1182 -0
  44. data/ext/TypeMap.h +51 -0
  45. data/ext/extconf.rb +30 -0
  46. data/lib/SQLType.rb +224 -0
  47. data/lib/active_record/connection_adapters/rubyfb_adapter.rb +805 -0
  48. data/lib/mkdoc +1 -0
  49. data/lib/rubyfb.rb +2 -0
  50. data/lib/rubyfb_lib.so +0 -0
  51. data/lib/src.rb +1800 -0
  52. data/mswin32fb/fbclient_ms.lib +0 -0
  53. data/mswin32fb/ibase.h +2555 -0
  54. data/mswin32fb/iberror.h +1741 -0
  55. data/rubyfb.gemspec +31 -0
  56. data/test/AddRemoveUserTest.rb +56 -0
  57. data/test/BackupRestoreTest.rb +99 -0
  58. data/test/BlobTest.rb +57 -0
  59. data/test/CharacterSetTest.rb +63 -0
  60. data/test/ConnectionTest.rb +111 -0
  61. data/test/DDLTest.rb +54 -0
  62. data/test/DatabaseTest.rb +83 -0
  63. data/test/GeneratorTest.rb +50 -0
  64. data/test/KeyTest.rb +140 -0
  65. data/test/ResultSetTest.rb +162 -0
  66. data/test/RoleTest.rb +73 -0
  67. data/test/RowCountTest.rb +65 -0
  68. data/test/RowTest.rb +203 -0
  69. data/test/SQLTest.rb +182 -0
  70. data/test/SQLTypeTest.rb +101 -0
  71. data/test/ServiceManagerTest.rb +29 -0
  72. data/test/StatementTest.rb +135 -0
  73. data/test/TestSetup.rb +11 -0
  74. data/test/TransactionTest.rb +112 -0
  75. data/test/TypeTest.rb +92 -0
  76. data/test/UnitTest.rb +65 -0
  77. metadata +143 -0
@@ -0,0 +1,1741 @@
1
+
2
+ #ifndef JRD_GEN_IBERROR_H
3
+ #define JRD_GEN_IBERROR_H
4
+ /*
5
+ * The contents of this file are subject to the Interbase Public
6
+ * License Version 1.0 (the "License"); you may not use this file
7
+ * except in compliance with the License. You may obtain a copy
8
+ * of the License at http://www.Inprise.com/IPL.html
9
+ *
10
+ * Software distributed under the License is distributed on an
11
+ * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
12
+ * or implied. See the License for the specific language governing
13
+ * rights and limitations under the License.
14
+ *
15
+ * The content of this file was generated by the Firebird project
16
+ * using the program jrd/codes.epp
17
+ */
18
+ /*
19
+ *
20
+ * *** WARNING *** - This file is automatically generated by codes.epp - do not edit!
21
+ *
22
+ */
23
+ /*
24
+ * MODULE: iberror.h
25
+ * DESCRIPTION: ISC error codes
26
+ *
27
+ */
28
+
29
+
30
+
31
+ /***********************/
32
+ /* ISC Error Codes */
33
+ /***********************/
34
+
35
+
36
+ #ifdef __cplusplus /* c++ definitions */
37
+
38
+ const ISC_STATUS isc_facility = 20;
39
+ const ISC_STATUS isc_base = 335544320L;
40
+ const ISC_STATUS isc_factor = 1;
41
+ const ISC_STATUS isc_arg_end = 0; // end of argument list
42
+ const ISC_STATUS isc_arg_gds = 1; // generic DSRI status value
43
+ const ISC_STATUS isc_arg_string = 2; // string argument
44
+ const ISC_STATUS isc_arg_cstring = 3; // count & string argument
45
+ const ISC_STATUS isc_arg_number = 4; // numeric argument (long)
46
+ const ISC_STATUS isc_arg_interpreted = 5; // interpreted status code (string)
47
+ const ISC_STATUS isc_arg_vms = 6; // VAX/VMS status code (long)
48
+ const ISC_STATUS isc_arg_unix = 7; // UNIX error code
49
+ const ISC_STATUS isc_arg_domain = 8; // Apollo/Domain error code
50
+ const ISC_STATUS isc_arg_dos = 9; // MSDOS/OS2 error code
51
+ const ISC_STATUS isc_arg_mpexl = 10; // HP MPE/XL error code
52
+ const ISC_STATUS isc_arg_mpexl_ipc = 11; // HP MPE/XL IPC error code
53
+ const ISC_STATUS isc_arg_next_mach = 15; // NeXT/Mach error code
54
+ const ISC_STATUS isc_arg_netware = 16; // NetWare error code
55
+ const ISC_STATUS isc_arg_win32 = 17; // Win32 error code
56
+ const ISC_STATUS isc_arg_warning = 18; // warning argument
57
+
58
+ const ISC_STATUS isc_arith_except = 335544321L;
59
+ const ISC_STATUS isc_bad_dbkey = 335544322L;
60
+ const ISC_STATUS isc_bad_db_format = 335544323L;
61
+ const ISC_STATUS isc_bad_db_handle = 335544324L;
62
+ const ISC_STATUS isc_bad_dpb_content = 335544325L;
63
+ const ISC_STATUS isc_bad_dpb_form = 335544326L;
64
+ const ISC_STATUS isc_bad_req_handle = 335544327L;
65
+ const ISC_STATUS isc_bad_segstr_handle = 335544328L;
66
+ const ISC_STATUS isc_bad_segstr_id = 335544329L;
67
+ const ISC_STATUS isc_bad_tpb_content = 335544330L;
68
+ const ISC_STATUS isc_bad_tpb_form = 335544331L;
69
+ const ISC_STATUS isc_bad_trans_handle = 335544332L;
70
+ const ISC_STATUS isc_bug_check = 335544333L;
71
+ const ISC_STATUS isc_convert_error = 335544334L;
72
+ const ISC_STATUS isc_db_corrupt = 335544335L;
73
+ const ISC_STATUS isc_deadlock = 335544336L;
74
+ const ISC_STATUS isc_excess_trans = 335544337L;
75
+ const ISC_STATUS isc_from_no_match = 335544338L;
76
+ const ISC_STATUS isc_infinap = 335544339L;
77
+ const ISC_STATUS isc_infona = 335544340L;
78
+ const ISC_STATUS isc_infunk = 335544341L;
79
+ const ISC_STATUS isc_integ_fail = 335544342L;
80
+ const ISC_STATUS isc_invalid_blr = 335544343L;
81
+ const ISC_STATUS isc_io_error = 335544344L;
82
+ const ISC_STATUS isc_lock_conflict = 335544345L;
83
+ const ISC_STATUS isc_metadata_corrupt = 335544346L;
84
+ const ISC_STATUS isc_not_valid = 335544347L;
85
+ const ISC_STATUS isc_no_cur_rec = 335544348L;
86
+ const ISC_STATUS isc_no_dup = 335544349L;
87
+ const ISC_STATUS isc_no_finish = 335544350L;
88
+ const ISC_STATUS isc_no_meta_update = 335544351L;
89
+ const ISC_STATUS isc_no_priv = 335544352L;
90
+ const ISC_STATUS isc_no_recon = 335544353L;
91
+ const ISC_STATUS isc_no_record = 335544354L;
92
+ const ISC_STATUS isc_no_segstr_close = 335544355L;
93
+ const ISC_STATUS isc_obsolete_metadata = 335544356L;
94
+ const ISC_STATUS isc_open_trans = 335544357L;
95
+ const ISC_STATUS isc_port_len = 335544358L;
96
+ const ISC_STATUS isc_read_only_field = 335544359L;
97
+ const ISC_STATUS isc_read_only_rel = 335544360L;
98
+ const ISC_STATUS isc_read_only_trans = 335544361L;
99
+ const ISC_STATUS isc_read_only_view = 335544362L;
100
+ const ISC_STATUS isc_req_no_trans = 335544363L;
101
+ const ISC_STATUS isc_req_sync = 335544364L;
102
+ const ISC_STATUS isc_req_wrong_db = 335544365L;
103
+ const ISC_STATUS isc_segment = 335544366L;
104
+ const ISC_STATUS isc_segstr_eof = 335544367L;
105
+ const ISC_STATUS isc_segstr_no_op = 335544368L;
106
+ const ISC_STATUS isc_segstr_no_read = 335544369L;
107
+ const ISC_STATUS isc_segstr_no_trans = 335544370L;
108
+ const ISC_STATUS isc_segstr_no_write = 335544371L;
109
+ const ISC_STATUS isc_segstr_wrong_db = 335544372L;
110
+ const ISC_STATUS isc_sys_request = 335544373L;
111
+ const ISC_STATUS isc_stream_eof = 335544374L;
112
+ const ISC_STATUS isc_unavailable = 335544375L;
113
+ const ISC_STATUS isc_unres_rel = 335544376L;
114
+ const ISC_STATUS isc_uns_ext = 335544377L;
115
+ const ISC_STATUS isc_wish_list = 335544378L;
116
+ const ISC_STATUS isc_wrong_ods = 335544379L;
117
+ const ISC_STATUS isc_wronumarg = 335544380L;
118
+ const ISC_STATUS isc_imp_exc = 335544381L;
119
+ const ISC_STATUS isc_random = 335544382L;
120
+ const ISC_STATUS isc_fatal_conflict = 335544383L;
121
+ const ISC_STATUS isc_badblk = 335544384L;
122
+ const ISC_STATUS isc_invpoolcl = 335544385L;
123
+ const ISC_STATUS isc_nopoolids = 335544386L;
124
+ const ISC_STATUS isc_relbadblk = 335544387L;
125
+ const ISC_STATUS isc_blktoobig = 335544388L;
126
+ const ISC_STATUS isc_bufexh = 335544389L;
127
+ const ISC_STATUS isc_syntaxerr = 335544390L;
128
+ const ISC_STATUS isc_bufinuse = 335544391L;
129
+ const ISC_STATUS isc_bdbincon = 335544392L;
130
+ const ISC_STATUS isc_reqinuse = 335544393L;
131
+ const ISC_STATUS isc_badodsver = 335544394L;
132
+ const ISC_STATUS isc_relnotdef = 335544395L;
133
+ const ISC_STATUS isc_fldnotdef = 335544396L;
134
+ const ISC_STATUS isc_dirtypage = 335544397L;
135
+ const ISC_STATUS isc_waifortra = 335544398L;
136
+ const ISC_STATUS isc_doubleloc = 335544399L;
137
+ const ISC_STATUS isc_nodnotfnd = 335544400L;
138
+ const ISC_STATUS isc_dupnodfnd = 335544401L;
139
+ const ISC_STATUS isc_locnotmar = 335544402L;
140
+ const ISC_STATUS isc_badpagtyp = 335544403L;
141
+ const ISC_STATUS isc_corrupt = 335544404L;
142
+ const ISC_STATUS isc_badpage = 335544405L;
143
+ const ISC_STATUS isc_badindex = 335544406L;
144
+ const ISC_STATUS isc_dbbnotzer = 335544407L;
145
+ const ISC_STATUS isc_tranotzer = 335544408L;
146
+ const ISC_STATUS isc_trareqmis = 335544409L;
147
+ const ISC_STATUS isc_badhndcnt = 335544410L;
148
+ const ISC_STATUS isc_wrotpbver = 335544411L;
149
+ const ISC_STATUS isc_wroblrver = 335544412L;
150
+ const ISC_STATUS isc_wrodpbver = 335544413L;
151
+ const ISC_STATUS isc_blobnotsup = 335544414L;
152
+ const ISC_STATUS isc_badrelation = 335544415L;
153
+ const ISC_STATUS isc_nodetach = 335544416L;
154
+ const ISC_STATUS isc_notremote = 335544417L;
155
+ const ISC_STATUS isc_trainlim = 335544418L;
156
+ const ISC_STATUS isc_notinlim = 335544419L;
157
+ const ISC_STATUS isc_traoutsta = 335544420L;
158
+ const ISC_STATUS isc_connect_reject = 335544421L;
159
+ const ISC_STATUS isc_dbfile = 335544422L;
160
+ const ISC_STATUS isc_orphan = 335544423L;
161
+ const ISC_STATUS isc_no_lock_mgr = 335544424L;
162
+ const ISC_STATUS isc_ctxinuse = 335544425L;
163
+ const ISC_STATUS isc_ctxnotdef = 335544426L;
164
+ const ISC_STATUS isc_datnotsup = 335544427L;
165
+ const ISC_STATUS isc_badmsgnum = 335544428L;
166
+ const ISC_STATUS isc_badparnum = 335544429L;
167
+ const ISC_STATUS isc_virmemexh = 335544430L;
168
+ const ISC_STATUS isc_blocking_signal = 335544431L;
169
+ const ISC_STATUS isc_lockmanerr = 335544432L;
170
+ const ISC_STATUS isc_journerr = 335544433L;
171
+ const ISC_STATUS isc_keytoobig = 335544434L;
172
+ const ISC_STATUS isc_nullsegkey = 335544435L;
173
+ const ISC_STATUS isc_sqlerr = 335544436L;
174
+ const ISC_STATUS isc_wrodynver = 335544437L;
175
+ const ISC_STATUS isc_funnotdef = 335544438L;
176
+ const ISC_STATUS isc_funmismat = 335544439L;
177
+ const ISC_STATUS isc_bad_msg_vec = 335544440L;
178
+ const ISC_STATUS isc_bad_detach = 335544441L;
179
+ const ISC_STATUS isc_noargacc_read = 335544442L;
180
+ const ISC_STATUS isc_noargacc_write = 335544443L;
181
+ const ISC_STATUS isc_read_only = 335544444L;
182
+ const ISC_STATUS isc_ext_err = 335544445L;
183
+ const ISC_STATUS isc_non_updatable = 335544446L;
184
+ const ISC_STATUS isc_no_rollback = 335544447L;
185
+ const ISC_STATUS isc_bad_sec_info = 335544448L;
186
+ const ISC_STATUS isc_invalid_sec_info = 335544449L;
187
+ const ISC_STATUS isc_misc_interpreted = 335544450L;
188
+ const ISC_STATUS isc_update_conflict = 335544451L;
189
+ const ISC_STATUS isc_unlicensed = 335544452L;
190
+ const ISC_STATUS isc_obj_in_use = 335544453L;
191
+ const ISC_STATUS isc_nofilter = 335544454L;
192
+ const ISC_STATUS isc_shadow_accessed = 335544455L;
193
+ const ISC_STATUS isc_invalid_sdl = 335544456L;
194
+ const ISC_STATUS isc_out_of_bounds = 335544457L;
195
+ const ISC_STATUS isc_invalid_dimension = 335544458L;
196
+ const ISC_STATUS isc_rec_in_limbo = 335544459L;
197
+ const ISC_STATUS isc_shadow_missing = 335544460L;
198
+ const ISC_STATUS isc_cant_validate = 335544461L;
199
+ const ISC_STATUS isc_cant_start_journal = 335544462L;
200
+ const ISC_STATUS isc_gennotdef = 335544463L;
201
+ const ISC_STATUS isc_cant_start_logging = 335544464L;
202
+ const ISC_STATUS isc_bad_segstr_type = 335544465L;
203
+ const ISC_STATUS isc_foreign_key = 335544466L;
204
+ const ISC_STATUS isc_high_minor = 335544467L;
205
+ const ISC_STATUS isc_tra_state = 335544468L;
206
+ const ISC_STATUS isc_trans_invalid = 335544469L;
207
+ const ISC_STATUS isc_buf_invalid = 335544470L;
208
+ const ISC_STATUS isc_indexnotdefined = 335544471L;
209
+ const ISC_STATUS isc_login = 335544472L;
210
+ const ISC_STATUS isc_invalid_bookmark = 335544473L;
211
+ const ISC_STATUS isc_bad_lock_level = 335544474L;
212
+ const ISC_STATUS isc_relation_lock = 335544475L;
213
+ const ISC_STATUS isc_record_lock = 335544476L;
214
+ const ISC_STATUS isc_max_idx = 335544477L;
215
+ const ISC_STATUS isc_jrn_enable = 335544478L;
216
+ const ISC_STATUS isc_old_failure = 335544479L;
217
+ const ISC_STATUS isc_old_in_progress = 335544480L;
218
+ const ISC_STATUS isc_old_no_space = 335544481L;
219
+ const ISC_STATUS isc_no_wal_no_jrn = 335544482L;
220
+ const ISC_STATUS isc_num_old_files = 335544483L;
221
+ const ISC_STATUS isc_wal_file_open = 335544484L;
222
+ const ISC_STATUS isc_bad_stmt_handle = 335544485L;
223
+ const ISC_STATUS isc_wal_failure = 335544486L;
224
+ const ISC_STATUS isc_walw_err = 335544487L;
225
+ const ISC_STATUS isc_logh_small = 335544488L;
226
+ const ISC_STATUS isc_logh_inv_version = 335544489L;
227
+ const ISC_STATUS isc_logh_open_flag = 335544490L;
228
+ const ISC_STATUS isc_logh_open_flag2 = 335544491L;
229
+ const ISC_STATUS isc_logh_diff_dbname = 335544492L;
230
+ const ISC_STATUS isc_logf_unexpected_eof = 335544493L;
231
+ const ISC_STATUS isc_logr_incomplete = 335544494L;
232
+ const ISC_STATUS isc_logr_header_small = 335544495L;
233
+ const ISC_STATUS isc_logb_small = 335544496L;
234
+ const ISC_STATUS isc_wal_illegal_attach = 335544497L;
235
+ const ISC_STATUS isc_wal_invalid_wpb = 335544498L;
236
+ const ISC_STATUS isc_wal_err_rollover = 335544499L;
237
+ const ISC_STATUS isc_no_wal = 335544500L;
238
+ const ISC_STATUS isc_drop_wal = 335544501L;
239
+ const ISC_STATUS isc_stream_not_defined = 335544502L;
240
+ const ISC_STATUS isc_wal_subsys_error = 335544503L;
241
+ const ISC_STATUS isc_wal_subsys_corrupt = 335544504L;
242
+ const ISC_STATUS isc_no_archive = 335544505L;
243
+ const ISC_STATUS isc_shutinprog = 335544506L;
244
+ const ISC_STATUS isc_range_in_use = 335544507L;
245
+ const ISC_STATUS isc_range_not_found = 335544508L;
246
+ const ISC_STATUS isc_charset_not_found = 335544509L;
247
+ const ISC_STATUS isc_lock_timeout = 335544510L;
248
+ const ISC_STATUS isc_prcnotdef = 335544511L;
249
+ const ISC_STATUS isc_prcmismat = 335544512L;
250
+ const ISC_STATUS isc_wal_bugcheck = 335544513L;
251
+ const ISC_STATUS isc_wal_cant_expand = 335544514L;
252
+ const ISC_STATUS isc_codnotdef = 335544515L;
253
+ const ISC_STATUS isc_xcpnotdef = 335544516L;
254
+ const ISC_STATUS isc_except = 335544517L;
255
+ const ISC_STATUS isc_cache_restart = 335544518L;
256
+ const ISC_STATUS isc_bad_lock_handle = 335544519L;
257
+ const ISC_STATUS isc_jrn_present = 335544520L;
258
+ const ISC_STATUS isc_wal_err_rollover2 = 335544521L;
259
+ const ISC_STATUS isc_wal_err_logwrite = 335544522L;
260
+ const ISC_STATUS isc_wal_err_jrn_comm = 335544523L;
261
+ const ISC_STATUS isc_wal_err_expansion = 335544524L;
262
+ const ISC_STATUS isc_wal_err_setup = 335544525L;
263
+ const ISC_STATUS isc_wal_err_ww_sync = 335544526L;
264
+ const ISC_STATUS isc_wal_err_ww_start = 335544527L;
265
+ const ISC_STATUS isc_shutdown = 335544528L;
266
+ const ISC_STATUS isc_existing_priv_mod = 335544529L;
267
+ const ISC_STATUS isc_primary_key_ref = 335544530L;
268
+ const ISC_STATUS isc_primary_key_notnull = 335544531L;
269
+ const ISC_STATUS isc_ref_cnstrnt_notfound = 335544532L;
270
+ const ISC_STATUS isc_foreign_key_notfound = 335544533L;
271
+ const ISC_STATUS isc_ref_cnstrnt_update = 335544534L;
272
+ const ISC_STATUS isc_check_cnstrnt_update = 335544535L;
273
+ const ISC_STATUS isc_check_cnstrnt_del = 335544536L;
274
+ const ISC_STATUS isc_integ_index_seg_del = 335544537L;
275
+ const ISC_STATUS isc_integ_index_seg_mod = 335544538L;
276
+ const ISC_STATUS isc_integ_index_del = 335544539L;
277
+ const ISC_STATUS isc_integ_index_mod = 335544540L;
278
+ const ISC_STATUS isc_check_trig_del = 335544541L;
279
+ const ISC_STATUS isc_check_trig_update = 335544542L;
280
+ const ISC_STATUS isc_cnstrnt_fld_del = 335544543L;
281
+ const ISC_STATUS isc_cnstrnt_fld_rename = 335544544L;
282
+ const ISC_STATUS isc_rel_cnstrnt_update = 335544545L;
283
+ const ISC_STATUS isc_constaint_on_view = 335544546L;
284
+ const ISC_STATUS isc_invld_cnstrnt_type = 335544547L;
285
+ const ISC_STATUS isc_primary_key_exists = 335544548L;
286
+ const ISC_STATUS isc_systrig_update = 335544549L;
287
+ const ISC_STATUS isc_not_rel_owner = 335544550L;
288
+ const ISC_STATUS isc_grant_obj_notfound = 335544551L;
289
+ const ISC_STATUS isc_grant_fld_notfound = 335544552L;
290
+ const ISC_STATUS isc_grant_nopriv = 335544553L;
291
+ const ISC_STATUS isc_nonsql_security_rel = 335544554L;
292
+ const ISC_STATUS isc_nonsql_security_fld = 335544555L;
293
+ const ISC_STATUS isc_wal_cache_err = 335544556L;
294
+ const ISC_STATUS isc_shutfail = 335544557L;
295
+ const ISC_STATUS isc_check_constraint = 335544558L;
296
+ const ISC_STATUS isc_bad_svc_handle = 335544559L;
297
+ const ISC_STATUS isc_shutwarn = 335544560L;
298
+ const ISC_STATUS isc_wrospbver = 335544561L;
299
+ const ISC_STATUS isc_bad_spb_form = 335544562L;
300
+ const ISC_STATUS isc_svcnotdef = 335544563L;
301
+ const ISC_STATUS isc_no_jrn = 335544564L;
302
+ const ISC_STATUS isc_transliteration_failed = 335544565L;
303
+ const ISC_STATUS isc_start_cm_for_wal = 335544566L;
304
+ const ISC_STATUS isc_wal_ovflow_log_required = 335544567L;
305
+ const ISC_STATUS isc_text_subtype = 335544568L;
306
+ const ISC_STATUS isc_dsql_error = 335544569L;
307
+ const ISC_STATUS isc_dsql_command_err = 335544570L;
308
+ const ISC_STATUS isc_dsql_constant_err = 335544571L;
309
+ const ISC_STATUS isc_dsql_cursor_err = 335544572L;
310
+ const ISC_STATUS isc_dsql_datatype_err = 335544573L;
311
+ const ISC_STATUS isc_dsql_decl_err = 335544574L;
312
+ const ISC_STATUS isc_dsql_cursor_update_err = 335544575L;
313
+ const ISC_STATUS isc_dsql_cursor_open_err = 335544576L;
314
+ const ISC_STATUS isc_dsql_cursor_close_err = 335544577L;
315
+ const ISC_STATUS isc_dsql_field_err = 335544578L;
316
+ const ISC_STATUS isc_dsql_internal_err = 335544579L;
317
+ const ISC_STATUS isc_dsql_relation_err = 335544580L;
318
+ const ISC_STATUS isc_dsql_procedure_err = 335544581L;
319
+ const ISC_STATUS isc_dsql_request_err = 335544582L;
320
+ const ISC_STATUS isc_dsql_sqlda_err = 335544583L;
321
+ const ISC_STATUS isc_dsql_var_count_err = 335544584L;
322
+ const ISC_STATUS isc_dsql_stmt_handle = 335544585L;
323
+ const ISC_STATUS isc_dsql_function_err = 335544586L;
324
+ const ISC_STATUS isc_dsql_blob_err = 335544587L;
325
+ const ISC_STATUS isc_collation_not_found = 335544588L;
326
+ const ISC_STATUS isc_collation_not_for_charset = 335544589L;
327
+ const ISC_STATUS isc_dsql_dup_option = 335544590L;
328
+ const ISC_STATUS isc_dsql_tran_err = 335544591L;
329
+ const ISC_STATUS isc_dsql_invalid_array = 335544592L;
330
+ const ISC_STATUS isc_dsql_max_arr_dim_exceeded = 335544593L;
331
+ const ISC_STATUS isc_dsql_arr_range_error = 335544594L;
332
+ const ISC_STATUS isc_dsql_trigger_err = 335544595L;
333
+ const ISC_STATUS isc_dsql_subselect_err = 335544596L;
334
+ const ISC_STATUS isc_dsql_crdb_prepare_err = 335544597L;
335
+ const ISC_STATUS isc_specify_field_err = 335544598L;
336
+ const ISC_STATUS isc_num_field_err = 335544599L;
337
+ const ISC_STATUS isc_col_name_err = 335544600L;
338
+ const ISC_STATUS isc_where_err = 335544601L;
339
+ const ISC_STATUS isc_table_view_err = 335544602L;
340
+ const ISC_STATUS isc_distinct_err = 335544603L;
341
+ const ISC_STATUS isc_key_field_count_err = 335544604L;
342
+ const ISC_STATUS isc_subquery_err = 335544605L;
343
+ const ISC_STATUS isc_expression_eval_err = 335544606L;
344
+ const ISC_STATUS isc_node_err = 335544607L;
345
+ const ISC_STATUS isc_command_end_err = 335544608L;
346
+ const ISC_STATUS isc_index_name = 335544609L;
347
+ const ISC_STATUS isc_exception_name = 335544610L;
348
+ const ISC_STATUS isc_field_name = 335544611L;
349
+ const ISC_STATUS isc_token_err = 335544612L;
350
+ const ISC_STATUS isc_union_err = 335544613L;
351
+ const ISC_STATUS isc_dsql_construct_err = 335544614L;
352
+ const ISC_STATUS isc_field_aggregate_err = 335544615L;
353
+ const ISC_STATUS isc_field_ref_err = 335544616L;
354
+ const ISC_STATUS isc_order_by_err = 335544617L;
355
+ const ISC_STATUS isc_return_mode_err = 335544618L;
356
+ const ISC_STATUS isc_extern_func_err = 335544619L;
357
+ const ISC_STATUS isc_alias_conflict_err = 335544620L;
358
+ const ISC_STATUS isc_procedure_conflict_error = 335544621L;
359
+ const ISC_STATUS isc_relation_conflict_err = 335544622L;
360
+ const ISC_STATUS isc_dsql_domain_err = 335544623L;
361
+ const ISC_STATUS isc_idx_seg_err = 335544624L;
362
+ const ISC_STATUS isc_node_name_err = 335544625L;
363
+ const ISC_STATUS isc_table_name = 335544626L;
364
+ const ISC_STATUS isc_proc_name = 335544627L;
365
+ const ISC_STATUS isc_idx_create_err = 335544628L;
366
+ const ISC_STATUS isc_wal_shadow_err = 335544629L;
367
+ const ISC_STATUS isc_dependency = 335544630L;
368
+ const ISC_STATUS isc_idx_key_err = 335544631L;
369
+ const ISC_STATUS isc_dsql_file_length_err = 335544632L;
370
+ const ISC_STATUS isc_dsql_shadow_number_err = 335544633L;
371
+ const ISC_STATUS isc_dsql_token_unk_err = 335544634L;
372
+ const ISC_STATUS isc_dsql_no_relation_alias = 335544635L;
373
+ const ISC_STATUS isc_indexname = 335544636L;
374
+ const ISC_STATUS isc_no_stream_plan = 335544637L;
375
+ const ISC_STATUS isc_stream_twice = 335544638L;
376
+ const ISC_STATUS isc_stream_not_found = 335544639L;
377
+ const ISC_STATUS isc_collation_requires_text = 335544640L;
378
+ const ISC_STATUS isc_dsql_domain_not_found = 335544641L;
379
+ const ISC_STATUS isc_index_unused = 335544642L;
380
+ const ISC_STATUS isc_dsql_self_join = 335544643L;
381
+ const ISC_STATUS isc_stream_bof = 335544644L;
382
+ const ISC_STATUS isc_stream_crack = 335544645L;
383
+ const ISC_STATUS isc_db_or_file_exists = 335544646L;
384
+ const ISC_STATUS isc_invalid_operator = 335544647L;
385
+ const ISC_STATUS isc_conn_lost = 335544648L;
386
+ const ISC_STATUS isc_bad_checksum = 335544649L;
387
+ const ISC_STATUS isc_page_type_err = 335544650L;
388
+ const ISC_STATUS isc_ext_readonly_err = 335544651L;
389
+ const ISC_STATUS isc_sing_select_err = 335544652L;
390
+ const ISC_STATUS isc_psw_attach = 335544653L;
391
+ const ISC_STATUS isc_psw_start_trans = 335544654L;
392
+ const ISC_STATUS isc_invalid_direction = 335544655L;
393
+ const ISC_STATUS isc_dsql_var_conflict = 335544656L;
394
+ const ISC_STATUS isc_dsql_no_blob_array = 335544657L;
395
+ const ISC_STATUS isc_dsql_base_table = 335544658L;
396
+ const ISC_STATUS isc_duplicate_base_table = 335544659L;
397
+ const ISC_STATUS isc_view_alias = 335544660L;
398
+ const ISC_STATUS isc_index_root_page_full = 335544661L;
399
+ const ISC_STATUS isc_dsql_blob_type_unknown = 335544662L;
400
+ const ISC_STATUS isc_req_max_clones_exceeded = 335544663L;
401
+ const ISC_STATUS isc_dsql_duplicate_spec = 335544664L;
402
+ const ISC_STATUS isc_unique_key_violation = 335544665L;
403
+ const ISC_STATUS isc_srvr_version_too_old = 335544666L;
404
+ const ISC_STATUS isc_drdb_completed_with_errs = 335544667L;
405
+ const ISC_STATUS isc_dsql_procedure_use_err = 335544668L;
406
+ const ISC_STATUS isc_dsql_count_mismatch = 335544669L;
407
+ const ISC_STATUS isc_blob_idx_err = 335544670L;
408
+ const ISC_STATUS isc_array_idx_err = 335544671L;
409
+ const ISC_STATUS isc_key_field_err = 335544672L;
410
+ const ISC_STATUS isc_no_delete = 335544673L;
411
+ const ISC_STATUS isc_del_last_field = 335544674L;
412
+ const ISC_STATUS isc_sort_err = 335544675L;
413
+ const ISC_STATUS isc_sort_mem_err = 335544676L;
414
+ const ISC_STATUS isc_version_err = 335544677L;
415
+ const ISC_STATUS isc_inval_key_posn = 335544678L;
416
+ const ISC_STATUS isc_no_segments_err = 335544679L;
417
+ const ISC_STATUS isc_crrp_data_err = 335544680L;
418
+ const ISC_STATUS isc_rec_size_err = 335544681L;
419
+ const ISC_STATUS isc_dsql_field_ref = 335544682L;
420
+ const ISC_STATUS isc_req_depth_exceeded = 335544683L;
421
+ const ISC_STATUS isc_no_field_access = 335544684L;
422
+ const ISC_STATUS isc_no_dbkey = 335544685L;
423
+ const ISC_STATUS isc_jrn_format_err = 335544686L;
424
+ const ISC_STATUS isc_jrn_file_full = 335544687L;
425
+ const ISC_STATUS isc_dsql_open_cursor_request = 335544688L;
426
+ const ISC_STATUS isc_ib_error = 335544689L;
427
+ const ISC_STATUS isc_cache_redef = 335544690L;
428
+ const ISC_STATUS isc_cache_too_small = 335544691L;
429
+ const ISC_STATUS isc_log_redef = 335544692L;
430
+ const ISC_STATUS isc_log_too_small = 335544693L;
431
+ const ISC_STATUS isc_partition_too_small = 335544694L;
432
+ const ISC_STATUS isc_partition_not_supp = 335544695L;
433
+ const ISC_STATUS isc_log_length_spec = 335544696L;
434
+ const ISC_STATUS isc_precision_err = 335544697L;
435
+ const ISC_STATUS isc_scale_nogt = 335544698L;
436
+ const ISC_STATUS isc_expec_short = 335544699L;
437
+ const ISC_STATUS isc_expec_long = 335544700L;
438
+ const ISC_STATUS isc_expec_ushort = 335544701L;
439
+ const ISC_STATUS isc_like_escape_invalid = 335544702L;
440
+ const ISC_STATUS isc_svcnoexe = 335544703L;
441
+ const ISC_STATUS isc_net_lookup_err = 335544704L;
442
+ const ISC_STATUS isc_service_unknown = 335544705L;
443
+ const ISC_STATUS isc_host_unknown = 335544706L;
444
+ const ISC_STATUS isc_grant_nopriv_on_base = 335544707L;
445
+ const ISC_STATUS isc_dyn_fld_ambiguous = 335544708L;
446
+ const ISC_STATUS isc_dsql_agg_ref_err = 335544709L;
447
+ const ISC_STATUS isc_complex_view = 335544710L;
448
+ const ISC_STATUS isc_unprepared_stmt = 335544711L;
449
+ const ISC_STATUS isc_expec_positive = 335544712L;
450
+ const ISC_STATUS isc_dsql_sqlda_value_err = 335544713L;
451
+ const ISC_STATUS isc_invalid_array_id = 335544714L;
452
+ const ISC_STATUS isc_extfile_uns_op = 335544715L;
453
+ const ISC_STATUS isc_svc_in_use = 335544716L;
454
+ const ISC_STATUS isc_err_stack_limit = 335544717L;
455
+ const ISC_STATUS isc_invalid_key = 335544718L;
456
+ const ISC_STATUS isc_net_init_error = 335544719L;
457
+ const ISC_STATUS isc_loadlib_failure = 335544720L;
458
+ const ISC_STATUS isc_network_error = 335544721L;
459
+ const ISC_STATUS isc_net_connect_err = 335544722L;
460
+ const ISC_STATUS isc_net_connect_listen_err = 335544723L;
461
+ const ISC_STATUS isc_net_event_connect_err = 335544724L;
462
+ const ISC_STATUS isc_net_event_listen_err = 335544725L;
463
+ const ISC_STATUS isc_net_read_err = 335544726L;
464
+ const ISC_STATUS isc_net_write_err = 335544727L;
465
+ const ISC_STATUS isc_integ_index_deactivate = 335544728L;
466
+ const ISC_STATUS isc_integ_deactivate_primary = 335544729L;
467
+ const ISC_STATUS isc_cse_not_supported = 335544730L;
468
+ const ISC_STATUS isc_tra_must_sweep = 335544731L;
469
+ const ISC_STATUS isc_unsupported_network_drive = 335544732L;
470
+ const ISC_STATUS isc_io_create_err = 335544733L;
471
+ const ISC_STATUS isc_io_open_err = 335544734L;
472
+ const ISC_STATUS isc_io_close_err = 335544735L;
473
+ const ISC_STATUS isc_io_read_err = 335544736L;
474
+ const ISC_STATUS isc_io_write_err = 335544737L;
475
+ const ISC_STATUS isc_io_delete_err = 335544738L;
476
+ const ISC_STATUS isc_io_access_err = 335544739L;
477
+ const ISC_STATUS isc_udf_exception = 335544740L;
478
+ const ISC_STATUS isc_lost_db_connection = 335544741L;
479
+ const ISC_STATUS isc_no_write_user_priv = 335544742L;
480
+ const ISC_STATUS isc_token_too_long = 335544743L;
481
+ const ISC_STATUS isc_max_att_exceeded = 335544744L;
482
+ const ISC_STATUS isc_login_same_as_role_name = 335544745L;
483
+ const ISC_STATUS isc_reftable_requires_pk = 335544746L;
484
+ const ISC_STATUS isc_usrname_too_long = 335544747L;
485
+ const ISC_STATUS isc_password_too_long = 335544748L;
486
+ const ISC_STATUS isc_usrname_required = 335544749L;
487
+ const ISC_STATUS isc_password_required = 335544750L;
488
+ const ISC_STATUS isc_bad_protocol = 335544751L;
489
+ const ISC_STATUS isc_dup_usrname_found = 335544752L;
490
+ const ISC_STATUS isc_usrname_not_found = 335544753L;
491
+ const ISC_STATUS isc_error_adding_sec_record = 335544754L;
492
+ const ISC_STATUS isc_error_modifying_sec_record = 335544755L;
493
+ const ISC_STATUS isc_error_deleting_sec_record = 335544756L;
494
+ const ISC_STATUS isc_error_updating_sec_db = 335544757L;
495
+ const ISC_STATUS isc_sort_rec_size_err = 335544758L;
496
+ const ISC_STATUS isc_bad_default_value = 335544759L;
497
+ const ISC_STATUS isc_invalid_clause = 335544760L;
498
+ const ISC_STATUS isc_too_many_handles = 335544761L;
499
+ const ISC_STATUS isc_optimizer_blk_exc = 335544762L;
500
+ const ISC_STATUS isc_invalid_string_constant = 335544763L;
501
+ const ISC_STATUS isc_transitional_date = 335544764L;
502
+ const ISC_STATUS isc_read_only_database = 335544765L;
503
+ const ISC_STATUS isc_must_be_dialect_2_and_up = 335544766L;
504
+ const ISC_STATUS isc_blob_filter_exception = 335544767L;
505
+ const ISC_STATUS isc_exception_access_violation = 335544768L;
506
+ const ISC_STATUS isc_exception_datatype_missalignment = 335544769L;
507
+ const ISC_STATUS isc_exception_array_bounds_exceeded = 335544770L;
508
+ const ISC_STATUS isc_exception_float_denormal_operand = 335544771L;
509
+ const ISC_STATUS isc_exception_float_divide_by_zero = 335544772L;
510
+ const ISC_STATUS isc_exception_float_inexact_result = 335544773L;
511
+ const ISC_STATUS isc_exception_float_invalid_operand = 335544774L;
512
+ const ISC_STATUS isc_exception_float_overflow = 335544775L;
513
+ const ISC_STATUS isc_exception_float_stack_check = 335544776L;
514
+ const ISC_STATUS isc_exception_float_underflow = 335544777L;
515
+ const ISC_STATUS isc_exception_integer_divide_by_zero = 335544778L;
516
+ const ISC_STATUS isc_exception_integer_overflow = 335544779L;
517
+ const ISC_STATUS isc_exception_unknown = 335544780L;
518
+ const ISC_STATUS isc_exception_stack_overflow = 335544781L;
519
+ const ISC_STATUS isc_exception_sigsegv = 335544782L;
520
+ const ISC_STATUS isc_exception_sigill = 335544783L;
521
+ const ISC_STATUS isc_exception_sigbus = 335544784L;
522
+ const ISC_STATUS isc_exception_sigfpe = 335544785L;
523
+ const ISC_STATUS isc_ext_file_delete = 335544786L;
524
+ const ISC_STATUS isc_ext_file_modify = 335544787L;
525
+ const ISC_STATUS isc_adm_task_denied = 335544788L;
526
+ const ISC_STATUS isc_extract_input_mismatch = 335544789L;
527
+ const ISC_STATUS isc_insufficient_svc_privileges = 335544790L;
528
+ const ISC_STATUS isc_file_in_use = 335544791L;
529
+ const ISC_STATUS isc_service_att_err = 335544792L;
530
+ const ISC_STATUS isc_ddl_not_allowed_by_db_sql_dial = 335544793L;
531
+ const ISC_STATUS isc_cancelled = 335544794L;
532
+ const ISC_STATUS isc_unexp_spb_form = 335544795L;
533
+ const ISC_STATUS isc_sql_dialect_datatype_unsupport = 335544796L;
534
+ const ISC_STATUS isc_svcnouser = 335544797L;
535
+ const ISC_STATUS isc_depend_on_uncommitted_rel = 335544798L;
536
+ const ISC_STATUS isc_svc_name_missing = 335544799L;
537
+ const ISC_STATUS isc_too_many_contexts = 335544800L;
538
+ const ISC_STATUS isc_datype_notsup = 335544801L;
539
+ const ISC_STATUS isc_dialect_reset_warning = 335544802L;
540
+ const ISC_STATUS isc_dialect_not_changed = 335544803L;
541
+ const ISC_STATUS isc_database_create_failed = 335544804L;
542
+ const ISC_STATUS isc_inv_dialect_specified = 335544805L;
543
+ const ISC_STATUS isc_valid_db_dialects = 335544806L;
544
+ const ISC_STATUS isc_sqlwarn = 335544807L;
545
+ const ISC_STATUS isc_dtype_renamed = 335544808L;
546
+ const ISC_STATUS isc_extern_func_dir_error = 335544809L;
547
+ const ISC_STATUS isc_date_range_exceeded = 335544810L;
548
+ const ISC_STATUS isc_inv_client_dialect_specified = 335544811L;
549
+ const ISC_STATUS isc_valid_client_dialects = 335544812L;
550
+ const ISC_STATUS isc_optimizer_between_err = 335544813L;
551
+ const ISC_STATUS isc_service_not_supported = 335544814L;
552
+ const ISC_STATUS isc_generator_name = 335544815L;
553
+ const ISC_STATUS isc_udf_name = 335544816L;
554
+ const ISC_STATUS isc_bad_limit_param = 335544817L;
555
+ const ISC_STATUS isc_bad_skip_param = 335544818L;
556
+ const ISC_STATUS isc_io_32bit_exceeded_err = 335544819L;
557
+ const ISC_STATUS isc_invalid_savepoint = 335544820L;
558
+ const ISC_STATUS isc_dsql_column_pos_err = 335544821L;
559
+ const ISC_STATUS isc_dsql_agg_where_err = 335544822L;
560
+ const ISC_STATUS isc_dsql_agg_group_err = 335544823L;
561
+ const ISC_STATUS isc_dsql_agg_column_err = 335544824L;
562
+ const ISC_STATUS isc_dsql_agg_having_err = 335544825L;
563
+ const ISC_STATUS isc_dsql_agg_nested_err = 335544826L;
564
+ const ISC_STATUS isc_exec_sql_invalid_arg = 335544827L;
565
+ const ISC_STATUS isc_exec_sql_invalid_req = 335544828L;
566
+ const ISC_STATUS isc_exec_sql_invalid_var = 335544829L;
567
+ const ISC_STATUS isc_exec_sql_max_call_exceeded = 335544830L;
568
+ const ISC_STATUS isc_conf_access_denied = 335544831L;
569
+ const ISC_STATUS isc_wrong_backup_state = 335544832L;
570
+ const ISC_STATUS isc_wal_backup_err = 335544833L;
571
+ const ISC_STATUS isc_cursor_not_open = 335544834L;
572
+ const ISC_STATUS isc_bad_shutdown_mode = 335544835L;
573
+ const ISC_STATUS isc_concat_overflow = 335544836L;
574
+ const ISC_STATUS isc_bad_substring_offset = 335544837L;
575
+ const ISC_STATUS isc_foreign_key_target_doesnt_exist = 335544838L;
576
+ const ISC_STATUS isc_foreign_key_references_present = 335544839L;
577
+ const ISC_STATUS isc_no_update = 335544840L;
578
+ const ISC_STATUS isc_cursor_already_open = 335544841L;
579
+ const ISC_STATUS isc_stack_trace = 335544842L;
580
+ const ISC_STATUS isc_ctx_var_not_found = 335544843L;
581
+ const ISC_STATUS isc_ctx_namespace_invalid = 335544844L;
582
+ const ISC_STATUS isc_ctx_too_big = 335544845L;
583
+ const ISC_STATUS isc_ctx_bad_argument = 335544846L;
584
+ const ISC_STATUS isc_identifier_too_long = 335544847L;
585
+ const ISC_STATUS isc_except2 = 335544848L;
586
+ const ISC_STATUS isc_malformed_string = 335544849L;
587
+ const ISC_STATUS isc_prc_out_param_mismatch = 335544850L;
588
+ const ISC_STATUS isc_command_end_err2 = 335544851L;
589
+ const ISC_STATUS isc_partner_idx_incompat_type = 335544852L;
590
+ const ISC_STATUS isc_bad_substring_length = 335544853L;
591
+ const ISC_STATUS isc_charset_not_installed = 335544854L;
592
+ const ISC_STATUS isc_collation_not_installed = 335544855L;
593
+ const ISC_STATUS isc_att_shutdown = 335544856L;
594
+ const ISC_STATUS isc_blobtoobig = 335544857L;
595
+ const ISC_STATUS isc_must_have_phys_field = 335544858L;
596
+ const ISC_STATUS isc_invalid_time_precision = 335544859L;
597
+ const ISC_STATUS isc_blob_convert_error = 335544860L;
598
+ const ISC_STATUS isc_array_convert_error = 335544861L;
599
+ const ISC_STATUS isc_record_lock_not_supp = 335544862L;
600
+ const ISC_STATUS isc_partner_idx_not_found = 335544863L;
601
+ const ISC_STATUS isc_tra_num_exc = 335544864L;
602
+ const ISC_STATUS isc_field_disappeared = 335544865L;
603
+ const ISC_STATUS isc_met_wrong_gtt_scope = 335544866L;
604
+ const ISC_STATUS isc_subtype_for_internal_use = 335544867L;
605
+ const ISC_STATUS isc_illegal_prc_type = 335544868L;
606
+ const ISC_STATUS isc_invalid_sort_datatype = 335544869L;
607
+ const ISC_STATUS isc_collation_name = 335544870L;
608
+ const ISC_STATUS isc_domain_name = 335544871L;
609
+ const ISC_STATUS isc_domnotdef = 335544872L;
610
+ const ISC_STATUS isc_array_max_dimensions = 335544873L;
611
+ const ISC_STATUS isc_max_db_per_trans_allowed = 335544874L;
612
+ const ISC_STATUS isc_bad_debug_format = 335544875L;
613
+ const ISC_STATUS isc_bad_proc_BLR = 335544876L;
614
+ const ISC_STATUS isc_key_too_big = 335544877L;
615
+ const ISC_STATUS isc_concurrent_transaction = 335544878L;
616
+ const ISC_STATUS isc_not_valid_for_var = 335544879L;
617
+ const ISC_STATUS isc_not_valid_for = 335544880L;
618
+ const ISC_STATUS isc_need_difference = 335544881L;
619
+ const ISC_STATUS isc_long_login = 335544882L;
620
+ const ISC_STATUS isc_fldnotdef2 = 335544883L;
621
+ const ISC_STATUS isc_gfix_db_name = 335740929L;
622
+ const ISC_STATUS isc_gfix_invalid_sw = 335740930L;
623
+ const ISC_STATUS isc_gfix_incmp_sw = 335740932L;
624
+ const ISC_STATUS isc_gfix_replay_req = 335740933L;
625
+ const ISC_STATUS isc_gfix_pgbuf_req = 335740934L;
626
+ const ISC_STATUS isc_gfix_val_req = 335740935L;
627
+ const ISC_STATUS isc_gfix_pval_req = 335740936L;
628
+ const ISC_STATUS isc_gfix_trn_req = 335740937L;
629
+ const ISC_STATUS isc_gfix_full_req = 335740940L;
630
+ const ISC_STATUS isc_gfix_usrname_req = 335740941L;
631
+ const ISC_STATUS isc_gfix_pass_req = 335740942L;
632
+ const ISC_STATUS isc_gfix_subs_name = 335740943L;
633
+ const ISC_STATUS isc_gfix_wal_req = 335740944L;
634
+ const ISC_STATUS isc_gfix_sec_req = 335740945L;
635
+ const ISC_STATUS isc_gfix_nval_req = 335740946L;
636
+ const ISC_STATUS isc_gfix_type_shut = 335740947L;
637
+ const ISC_STATUS isc_gfix_retry = 335740948L;
638
+ const ISC_STATUS isc_gfix_retry_db = 335740951L;
639
+ const ISC_STATUS isc_gfix_exceed_max = 335740991L;
640
+ const ISC_STATUS isc_gfix_corrupt_pool = 335740992L;
641
+ const ISC_STATUS isc_gfix_mem_exhausted = 335740993L;
642
+ const ISC_STATUS isc_gfix_bad_pool = 335740994L;
643
+ const ISC_STATUS isc_gfix_trn_not_valid = 335740995L;
644
+ const ISC_STATUS isc_gfix_unexp_eoi = 335741012L;
645
+ const ISC_STATUS isc_gfix_recon_fail = 335741018L;
646
+ const ISC_STATUS isc_gfix_trn_unknown = 335741036L;
647
+ const ISC_STATUS isc_gfix_mode_req = 335741038L;
648
+ const ISC_STATUS isc_gfix_opt_SQL_dialect = 335741039L;
649
+ const ISC_STATUS isc_gfix_pzval_req = 335741042L;
650
+ const ISC_STATUS isc_dsql_dbkey_from_non_table = 336003074L;
651
+ const ISC_STATUS isc_dsql_transitional_numeric = 336003075L;
652
+ const ISC_STATUS isc_dsql_dialect_warning_expr = 336003076L;
653
+ const ISC_STATUS isc_sql_db_dialect_dtype_unsupport = 336003077L;
654
+ const ISC_STATUS isc_isc_sql_dialect_conflict_num = 336003079L;
655
+ const ISC_STATUS isc_dsql_warning_number_ambiguous = 336003080L;
656
+ const ISC_STATUS isc_dsql_warning_number_ambiguous1 = 336003081L;
657
+ const ISC_STATUS isc_dsql_warn_precision_ambiguous = 336003082L;
658
+ const ISC_STATUS isc_dsql_warn_precision_ambiguous1 = 336003083L;
659
+ const ISC_STATUS isc_dsql_warn_precision_ambiguous2 = 336003084L;
660
+ const ISC_STATUS isc_dsql_ambiguous_field_name = 336003085L;
661
+ const ISC_STATUS isc_dsql_udf_return_pos_err = 336003086L;
662
+ const ISC_STATUS isc_dsql_invalid_label = 336003087L;
663
+ const ISC_STATUS isc_dsql_datatypes_not_comparable = 336003088L;
664
+ const ISC_STATUS isc_dsql_cursor_invalid = 336003089L;
665
+ const ISC_STATUS isc_dsql_cursor_redefined = 336003090L;
666
+ const ISC_STATUS isc_dsql_cursor_not_found = 336003091L;
667
+ const ISC_STATUS isc_dsql_cursor_exists = 336003092L;
668
+ const ISC_STATUS isc_dsql_cursor_rel_ambiguous = 336003093L;
669
+ const ISC_STATUS isc_dsql_cursor_rel_not_found = 336003094L;
670
+ const ISC_STATUS isc_dsql_cursor_not_open = 336003095L;
671
+ const ISC_STATUS isc_dsql_type_not_supp_ext_tab = 336003096L;
672
+ const ISC_STATUS isc_dsql_feature_not_supported_ods = 336003097L;
673
+ const ISC_STATUS isc_primary_key_required = 336003098L;
674
+ const ISC_STATUS isc_upd_ins_doesnt_match_pk = 336003099L;
675
+ const ISC_STATUS isc_upd_ins_doesnt_match_matching = 336003100L;
676
+ const ISC_STATUS isc_upd_ins_with_complex_view = 336003101L;
677
+ const ISC_STATUS isc_dsql_incompatible_trigger_type = 336003102L;
678
+ const ISC_STATUS isc_dsql_db_trigger_type_cant_change = 336003103L;
679
+ const ISC_STATUS isc_dyn_role_does_not_exist = 336068796L;
680
+ const ISC_STATUS isc_dyn_no_grant_admin_opt = 336068797L;
681
+ const ISC_STATUS isc_dyn_user_not_role_member = 336068798L;
682
+ const ISC_STATUS isc_dyn_delete_role_failed = 336068799L;
683
+ const ISC_STATUS isc_dyn_grant_role_to_user = 336068800L;
684
+ const ISC_STATUS isc_dyn_inv_sql_role_name = 336068801L;
685
+ const ISC_STATUS isc_dyn_dup_sql_role = 336068802L;
686
+ const ISC_STATUS isc_dyn_kywd_spec_for_role = 336068803L;
687
+ const ISC_STATUS isc_dyn_roles_not_supported = 336068804L;
688
+ const ISC_STATUS isc_dyn_domain_name_exists = 336068812L;
689
+ const ISC_STATUS isc_dyn_field_name_exists = 336068813L;
690
+ const ISC_STATUS isc_dyn_dependency_exists = 336068814L;
691
+ const ISC_STATUS isc_dyn_dtype_invalid = 336068815L;
692
+ const ISC_STATUS isc_dyn_char_fld_too_small = 336068816L;
693
+ const ISC_STATUS isc_dyn_invalid_dtype_conversion = 336068817L;
694
+ const ISC_STATUS isc_dyn_dtype_conv_invalid = 336068818L;
695
+ const ISC_STATUS isc_dyn_zero_len_id = 336068820L;
696
+ const ISC_STATUS isc_max_coll_per_charset = 336068829L;
697
+ const ISC_STATUS isc_invalid_coll_attr = 336068830L;
698
+ const ISC_STATUS isc_dyn_wrong_gtt_scope = 336068840L;
699
+ const ISC_STATUS isc_dyn_scale_too_big = 336068852L;
700
+ const ISC_STATUS isc_dyn_precision_too_small = 336068853L;
701
+ const ISC_STATUS isc_dyn_miss_priv_warning = 336068855L;
702
+ const ISC_STATUS isc_dyn_ods_not_supp_feature = 336068856L;
703
+ const ISC_STATUS isc_gbak_unknown_switch = 336330753L;
704
+ const ISC_STATUS isc_gbak_page_size_missing = 336330754L;
705
+ const ISC_STATUS isc_gbak_page_size_toobig = 336330755L;
706
+ const ISC_STATUS isc_gbak_redir_ouput_missing = 336330756L;
707
+ const ISC_STATUS isc_gbak_switches_conflict = 336330757L;
708
+ const ISC_STATUS isc_gbak_unknown_device = 336330758L;
709
+ const ISC_STATUS isc_gbak_no_protection = 336330759L;
710
+ const ISC_STATUS isc_gbak_page_size_not_allowed = 336330760L;
711
+ const ISC_STATUS isc_gbak_multi_source_dest = 336330761L;
712
+ const ISC_STATUS isc_gbak_filename_missing = 336330762L;
713
+ const ISC_STATUS isc_gbak_dup_inout_names = 336330763L;
714
+ const ISC_STATUS isc_gbak_inv_page_size = 336330764L;
715
+ const ISC_STATUS isc_gbak_db_specified = 336330765L;
716
+ const ISC_STATUS isc_gbak_db_exists = 336330766L;
717
+ const ISC_STATUS isc_gbak_unk_device = 336330767L;
718
+ const ISC_STATUS isc_gbak_blob_info_failed = 336330772L;
719
+ const ISC_STATUS isc_gbak_unk_blob_item = 336330773L;
720
+ const ISC_STATUS isc_gbak_get_seg_failed = 336330774L;
721
+ const ISC_STATUS isc_gbak_close_blob_failed = 336330775L;
722
+ const ISC_STATUS isc_gbak_open_blob_failed = 336330776L;
723
+ const ISC_STATUS isc_gbak_put_blr_gen_id_failed = 336330777L;
724
+ const ISC_STATUS isc_gbak_unk_type = 336330778L;
725
+ const ISC_STATUS isc_gbak_comp_req_failed = 336330779L;
726
+ const ISC_STATUS isc_gbak_start_req_failed = 336330780L;
727
+ const ISC_STATUS isc_gbak_rec_failed = 336330781L;
728
+ const ISC_STATUS isc_gbak_rel_req_failed = 336330782L;
729
+ const ISC_STATUS isc_gbak_db_info_failed = 336330783L;
730
+ const ISC_STATUS isc_gbak_no_db_desc = 336330784L;
731
+ const ISC_STATUS isc_gbak_db_create_failed = 336330785L;
732
+ const ISC_STATUS isc_gbak_decomp_len_error = 336330786L;
733
+ const ISC_STATUS isc_gbak_tbl_missing = 336330787L;
734
+ const ISC_STATUS isc_gbak_blob_col_missing = 336330788L;
735
+ const ISC_STATUS isc_gbak_create_blob_failed = 336330789L;
736
+ const ISC_STATUS isc_gbak_put_seg_failed = 336330790L;
737
+ const ISC_STATUS isc_gbak_rec_len_exp = 336330791L;
738
+ const ISC_STATUS isc_gbak_inv_rec_len = 336330792L;
739
+ const ISC_STATUS isc_gbak_exp_data_type = 336330793L;
740
+ const ISC_STATUS isc_gbak_gen_id_failed = 336330794L;
741
+ const ISC_STATUS isc_gbak_unk_rec_type = 336330795L;
742
+ const ISC_STATUS isc_gbak_inv_bkup_ver = 336330796L;
743
+ const ISC_STATUS isc_gbak_missing_bkup_desc = 336330797L;
744
+ const ISC_STATUS isc_gbak_string_trunc = 336330798L;
745
+ const ISC_STATUS isc_gbak_cant_rest_record = 336330799L;
746
+ const ISC_STATUS isc_gbak_send_failed = 336330800L;
747
+ const ISC_STATUS isc_gbak_no_tbl_name = 336330801L;
748
+ const ISC_STATUS isc_gbak_unexp_eof = 336330802L;
749
+ const ISC_STATUS isc_gbak_db_format_too_old = 336330803L;
750
+ const ISC_STATUS isc_gbak_inv_array_dim = 336330804L;
751
+ const ISC_STATUS isc_gbak_xdr_len_expected = 336330807L;
752
+ const ISC_STATUS isc_gbak_open_bkup_error = 336330817L;
753
+ const ISC_STATUS isc_gbak_open_error = 336330818L;
754
+ const ISC_STATUS isc_gbak_missing_block_fac = 336330934L;
755
+ const ISC_STATUS isc_gbak_inv_block_fac = 336330935L;
756
+ const ISC_STATUS isc_gbak_block_fac_specified = 336330936L;
757
+ const ISC_STATUS isc_gbak_missing_username = 336330940L;
758
+ const ISC_STATUS isc_gbak_missing_password = 336330941L;
759
+ const ISC_STATUS isc_gbak_missing_skipped_bytes = 336330952L;
760
+ const ISC_STATUS isc_gbak_inv_skipped_bytes = 336330953L;
761
+ const ISC_STATUS isc_gbak_err_restore_charset = 336330965L;
762
+ const ISC_STATUS isc_gbak_err_restore_collation = 336330967L;
763
+ const ISC_STATUS isc_gbak_read_error = 336330972L;
764
+ const ISC_STATUS isc_gbak_write_error = 336330973L;
765
+ const ISC_STATUS isc_gbak_db_in_use = 336330985L;
766
+ const ISC_STATUS isc_gbak_sysmemex = 336330990L;
767
+ const ISC_STATUS isc_gbak_restore_role_failed = 336331002L;
768
+ const ISC_STATUS isc_gbak_role_op_missing = 336331005L;
769
+ const ISC_STATUS isc_gbak_page_buffers_missing = 336331010L;
770
+ const ISC_STATUS isc_gbak_page_buffers_wrong_param = 336331011L;
771
+ const ISC_STATUS isc_gbak_page_buffers_restore = 336331012L;
772
+ const ISC_STATUS isc_gbak_inv_size = 336331014L;
773
+ const ISC_STATUS isc_gbak_file_outof_sequence = 336331015L;
774
+ const ISC_STATUS isc_gbak_join_file_missing = 336331016L;
775
+ const ISC_STATUS isc_gbak_stdin_not_supptd = 336331017L;
776
+ const ISC_STATUS isc_gbak_stdout_not_supptd = 336331018L;
777
+ const ISC_STATUS isc_gbak_bkup_corrupt = 336331019L;
778
+ const ISC_STATUS isc_gbak_unk_db_file_spec = 336331020L;
779
+ const ISC_STATUS isc_gbak_hdr_write_failed = 336331021L;
780
+ const ISC_STATUS isc_gbak_disk_space_ex = 336331022L;
781
+ const ISC_STATUS isc_gbak_size_lt_min = 336331023L;
782
+ const ISC_STATUS isc_gbak_svc_name_missing = 336331025L;
783
+ const ISC_STATUS isc_gbak_not_ownr = 336331026L;
784
+ const ISC_STATUS isc_gbak_mode_req = 336331031L;
785
+ const ISC_STATUS isc_gbak_just_data = 336331033L;
786
+ const ISC_STATUS isc_gbak_data_only = 336331034L;
787
+ const ISC_STATUS isc_dsql_too_old_ods = 336397205L;
788
+ const ISC_STATUS isc_dsql_table_not_found = 336397206L;
789
+ const ISC_STATUS isc_dsql_view_not_found = 336397207L;
790
+ const ISC_STATUS isc_dsql_line_col_error = 336397208L;
791
+ const ISC_STATUS isc_dsql_unknown_pos = 336397209L;
792
+ const ISC_STATUS isc_dsql_no_dup_name = 336397210L;
793
+ const ISC_STATUS isc_dsql_too_many_values = 336397211L;
794
+ const ISC_STATUS isc_dsql_no_array_computed = 336397212L;
795
+ const ISC_STATUS isc_dsql_implicit_domain_name = 336397213L;
796
+ const ISC_STATUS isc_dsql_only_can_subscript_array = 336397214L;
797
+ const ISC_STATUS isc_dsql_max_sort_items = 336397215L;
798
+ const ISC_STATUS isc_dsql_max_group_items = 336397216L;
799
+ const ISC_STATUS isc_dsql_conflicting_sort_field = 336397217L;
800
+ const ISC_STATUS isc_dsql_derived_table_more_columns = 336397218L;
801
+ const ISC_STATUS isc_dsql_derived_table_less_columns = 336397219L;
802
+ const ISC_STATUS isc_dsql_derived_field_unnamed = 336397220L;
803
+ const ISC_STATUS isc_dsql_derived_field_dup_name = 336397221L;
804
+ const ISC_STATUS isc_dsql_derived_alias_select = 336397222L;
805
+ const ISC_STATUS isc_dsql_derived_alias_field = 336397223L;
806
+ const ISC_STATUS isc_dsql_auto_field_bad_pos = 336397224L;
807
+ const ISC_STATUS isc_dsql_cte_wrong_reference = 336397225L;
808
+ const ISC_STATUS isc_dsql_cte_cycle = 336397226L;
809
+ const ISC_STATUS isc_dsql_cte_outer_join = 336397227L;
810
+ const ISC_STATUS isc_dsql_cte_mult_references = 336397228L;
811
+ const ISC_STATUS isc_dsql_cte_not_a_union = 336397229L;
812
+ const ISC_STATUS isc_dsql_cte_nonrecurs_after_recurs = 336397230L;
813
+ const ISC_STATUS isc_dsql_cte_wrong_clause = 336397231L;
814
+ const ISC_STATUS isc_dsql_cte_union_all = 336397232L;
815
+ const ISC_STATUS isc_dsql_cte_miss_nonrecursive = 336397233L;
816
+ const ISC_STATUS isc_dsql_cte_nested_with = 336397234L;
817
+ const ISC_STATUS isc_dsql_col_more_than_once_using = 336397235L;
818
+ const ISC_STATUS isc_dsql_unsupp_feature_dialect = 336397236L;
819
+ const ISC_STATUS isc_dsql_cte_not_used = 336397237L;
820
+ const ISC_STATUS isc_gsec_cant_open_db = 336723983L;
821
+ const ISC_STATUS isc_gsec_switches_error = 336723984L;
822
+ const ISC_STATUS isc_gsec_no_op_spec = 336723985L;
823
+ const ISC_STATUS isc_gsec_no_usr_name = 336723986L;
824
+ const ISC_STATUS isc_gsec_err_add = 336723987L;
825
+ const ISC_STATUS isc_gsec_err_modify = 336723988L;
826
+ const ISC_STATUS isc_gsec_err_find_mod = 336723989L;
827
+ const ISC_STATUS isc_gsec_err_rec_not_found = 336723990L;
828
+ const ISC_STATUS isc_gsec_err_delete = 336723991L;
829
+ const ISC_STATUS isc_gsec_err_find_del = 336723992L;
830
+ const ISC_STATUS isc_gsec_err_find_disp = 336723996L;
831
+ const ISC_STATUS isc_gsec_inv_param = 336723997L;
832
+ const ISC_STATUS isc_gsec_op_specified = 336723998L;
833
+ const ISC_STATUS isc_gsec_pw_specified = 336723999L;
834
+ const ISC_STATUS isc_gsec_uid_specified = 336724000L;
835
+ const ISC_STATUS isc_gsec_gid_specified = 336724001L;
836
+ const ISC_STATUS isc_gsec_proj_specified = 336724002L;
837
+ const ISC_STATUS isc_gsec_org_specified = 336724003L;
838
+ const ISC_STATUS isc_gsec_fname_specified = 336724004L;
839
+ const ISC_STATUS isc_gsec_mname_specified = 336724005L;
840
+ const ISC_STATUS isc_gsec_lname_specified = 336724006L;
841
+ const ISC_STATUS isc_gsec_inv_switch = 336724008L;
842
+ const ISC_STATUS isc_gsec_amb_switch = 336724009L;
843
+ const ISC_STATUS isc_gsec_no_op_specified = 336724010L;
844
+ const ISC_STATUS isc_gsec_params_not_allowed = 336724011L;
845
+ const ISC_STATUS isc_gsec_incompat_switch = 336724012L;
846
+ const ISC_STATUS isc_gsec_inv_username = 336724044L;
847
+ const ISC_STATUS isc_gsec_inv_pw_length = 336724045L;
848
+ const ISC_STATUS isc_gsec_db_specified = 336724046L;
849
+ const ISC_STATUS isc_gsec_db_admin_specified = 336724047L;
850
+ const ISC_STATUS isc_gsec_db_admin_pw_specified = 336724048L;
851
+ const ISC_STATUS isc_gsec_sql_role_specified = 336724049L;
852
+ const ISC_STATUS isc_license_no_file = 336789504L;
853
+ const ISC_STATUS isc_license_op_specified = 336789523L;
854
+ const ISC_STATUS isc_license_op_missing = 336789524L;
855
+ const ISC_STATUS isc_license_inv_switch = 336789525L;
856
+ const ISC_STATUS isc_license_inv_switch_combo = 336789526L;
857
+ const ISC_STATUS isc_license_inv_op_combo = 336789527L;
858
+ const ISC_STATUS isc_license_amb_switch = 336789528L;
859
+ const ISC_STATUS isc_license_inv_parameter = 336789529L;
860
+ const ISC_STATUS isc_license_param_specified = 336789530L;
861
+ const ISC_STATUS isc_license_param_req = 336789531L;
862
+ const ISC_STATUS isc_license_syntx_error = 336789532L;
863
+ const ISC_STATUS isc_license_dup_id = 336789534L;
864
+ const ISC_STATUS isc_license_inv_id_key = 336789535L;
865
+ const ISC_STATUS isc_license_err_remove = 336789536L;
866
+ const ISC_STATUS isc_license_err_update = 336789537L;
867
+ const ISC_STATUS isc_license_err_convert = 336789538L;
868
+ const ISC_STATUS isc_license_err_unk = 336789539L;
869
+ const ISC_STATUS isc_license_svc_err_add = 336789540L;
870
+ const ISC_STATUS isc_license_svc_err_remove = 336789541L;
871
+ const ISC_STATUS isc_license_eval_exists = 336789563L;
872
+ const ISC_STATUS isc_gstat_unknown_switch = 336920577L;
873
+ const ISC_STATUS isc_gstat_retry = 336920578L;
874
+ const ISC_STATUS isc_gstat_wrong_ods = 336920579L;
875
+ const ISC_STATUS isc_gstat_unexpected_eof = 336920580L;
876
+ const ISC_STATUS isc_gstat_open_err = 336920605L;
877
+ const ISC_STATUS isc_gstat_read_err = 336920606L;
878
+ const ISC_STATUS isc_gstat_sysmemex = 336920607L;
879
+ const ISC_STATUS isc_fbsvcmgr_bad_am = 336986113L;
880
+ const ISC_STATUS isc_fbsvcmgr_bad_wm = 336986114L;
881
+ const ISC_STATUS isc_fbsvcmgr_bad_rs = 336986115L;
882
+ const ISC_STATUS isc_fbsvcmgr_info_err = 336986116L;
883
+ const ISC_STATUS isc_fbsvcmgr_query_err = 336986117L;
884
+ const ISC_STATUS isc_fbsvcmgr_switch_unknown = 336986118L;
885
+ const ISC_STATUS isc_err_max = 827;
886
+
887
+ #else /* c definitions */
888
+
889
+ #define isc_facility 20
890
+ #define isc_base 335544320L
891
+ #define isc_factor 1
892
+
893
+ #define isc_arg_end 0 /* end of argument list */
894
+ #define isc_arg_gds 1 /* generic DSRI status value */
895
+ #define isc_arg_string 2 /* string argument */
896
+ #define isc_arg_cstring 3 /* count & string argument */
897
+ #define isc_arg_number 4 /* numeric argument (long) */
898
+ #define isc_arg_interpreted 5 /* interpreted status code (string) */
899
+ #define isc_arg_vms 6 /* VAX/VMS status code (long) */
900
+ #define isc_arg_unix 7 /* UNIX error code */
901
+ #define isc_arg_domain 8 /* Apollo/Domain error code */
902
+ #define isc_arg_dos 9 /* MSDOS/OS2 error code */
903
+ #define isc_arg_mpexl 10 /* HP MPE/XL error code */
904
+ #define isc_arg_mpexl_ipc 11 /* HP MPE/XL IPC error code */
905
+ #define isc_arg_next_mach 15 /* NeXT/Mach error code */
906
+ #define isc_arg_netware 16 /* NetWare error code */
907
+ #define isc_arg_win32 17 /* Win32 error code */
908
+ #define isc_arg_warning 18 /* warning argument */
909
+
910
+ #define isc_arith_except 335544321L
911
+ #define isc_bad_dbkey 335544322L
912
+ #define isc_bad_db_format 335544323L
913
+ #define isc_bad_db_handle 335544324L
914
+ #define isc_bad_dpb_content 335544325L
915
+ #define isc_bad_dpb_form 335544326L
916
+ #define isc_bad_req_handle 335544327L
917
+ #define isc_bad_segstr_handle 335544328L
918
+ #define isc_bad_segstr_id 335544329L
919
+ #define isc_bad_tpb_content 335544330L
920
+ #define isc_bad_tpb_form 335544331L
921
+ #define isc_bad_trans_handle 335544332L
922
+ #define isc_bug_check 335544333L
923
+ #define isc_convert_error 335544334L
924
+ #define isc_db_corrupt 335544335L
925
+ #define isc_deadlock 335544336L
926
+ #define isc_excess_trans 335544337L
927
+ #define isc_from_no_match 335544338L
928
+ #define isc_infinap 335544339L
929
+ #define isc_infona 335544340L
930
+ #define isc_infunk 335544341L
931
+ #define isc_integ_fail 335544342L
932
+ #define isc_invalid_blr 335544343L
933
+ #define isc_io_error 335544344L
934
+ #define isc_lock_conflict 335544345L
935
+ #define isc_metadata_corrupt 335544346L
936
+ #define isc_not_valid 335544347L
937
+ #define isc_no_cur_rec 335544348L
938
+ #define isc_no_dup 335544349L
939
+ #define isc_no_finish 335544350L
940
+ #define isc_no_meta_update 335544351L
941
+ #define isc_no_priv 335544352L
942
+ #define isc_no_recon 335544353L
943
+ #define isc_no_record 335544354L
944
+ #define isc_no_segstr_close 335544355L
945
+ #define isc_obsolete_metadata 335544356L
946
+ #define isc_open_trans 335544357L
947
+ #define isc_port_len 335544358L
948
+ #define isc_read_only_field 335544359L
949
+ #define isc_read_only_rel 335544360L
950
+ #define isc_read_only_trans 335544361L
951
+ #define isc_read_only_view 335544362L
952
+ #define isc_req_no_trans 335544363L
953
+ #define isc_req_sync 335544364L
954
+ #define isc_req_wrong_db 335544365L
955
+ #define isc_segment 335544366L
956
+ #define isc_segstr_eof 335544367L
957
+ #define isc_segstr_no_op 335544368L
958
+ #define isc_segstr_no_read 335544369L
959
+ #define isc_segstr_no_trans 335544370L
960
+ #define isc_segstr_no_write 335544371L
961
+ #define isc_segstr_wrong_db 335544372L
962
+ #define isc_sys_request 335544373L
963
+ #define isc_stream_eof 335544374L
964
+ #define isc_unavailable 335544375L
965
+ #define isc_unres_rel 335544376L
966
+ #define isc_uns_ext 335544377L
967
+ #define isc_wish_list 335544378L
968
+ #define isc_wrong_ods 335544379L
969
+ #define isc_wronumarg 335544380L
970
+ #define isc_imp_exc 335544381L
971
+ #define isc_random 335544382L
972
+ #define isc_fatal_conflict 335544383L
973
+ #define isc_badblk 335544384L
974
+ #define isc_invpoolcl 335544385L
975
+ #define isc_nopoolids 335544386L
976
+ #define isc_relbadblk 335544387L
977
+ #define isc_blktoobig 335544388L
978
+ #define isc_bufexh 335544389L
979
+ #define isc_syntaxerr 335544390L
980
+ #define isc_bufinuse 335544391L
981
+ #define isc_bdbincon 335544392L
982
+ #define isc_reqinuse 335544393L
983
+ #define isc_badodsver 335544394L
984
+ #define isc_relnotdef 335544395L
985
+ #define isc_fldnotdef 335544396L
986
+ #define isc_dirtypage 335544397L
987
+ #define isc_waifortra 335544398L
988
+ #define isc_doubleloc 335544399L
989
+ #define isc_nodnotfnd 335544400L
990
+ #define isc_dupnodfnd 335544401L
991
+ #define isc_locnotmar 335544402L
992
+ #define isc_badpagtyp 335544403L
993
+ #define isc_corrupt 335544404L
994
+ #define isc_badpage 335544405L
995
+ #define isc_badindex 335544406L
996
+ #define isc_dbbnotzer 335544407L
997
+ #define isc_tranotzer 335544408L
998
+ #define isc_trareqmis 335544409L
999
+ #define isc_badhndcnt 335544410L
1000
+ #define isc_wrotpbver 335544411L
1001
+ #define isc_wroblrver 335544412L
1002
+ #define isc_wrodpbver 335544413L
1003
+ #define isc_blobnotsup 335544414L
1004
+ #define isc_badrelation 335544415L
1005
+ #define isc_nodetach 335544416L
1006
+ #define isc_notremote 335544417L
1007
+ #define isc_trainlim 335544418L
1008
+ #define isc_notinlim 335544419L
1009
+ #define isc_traoutsta 335544420L
1010
+ #define isc_connect_reject 335544421L
1011
+ #define isc_dbfile 335544422L
1012
+ #define isc_orphan 335544423L
1013
+ #define isc_no_lock_mgr 335544424L
1014
+ #define isc_ctxinuse 335544425L
1015
+ #define isc_ctxnotdef 335544426L
1016
+ #define isc_datnotsup 335544427L
1017
+ #define isc_badmsgnum 335544428L
1018
+ #define isc_badparnum 335544429L
1019
+ #define isc_virmemexh 335544430L
1020
+ #define isc_blocking_signal 335544431L
1021
+ #define isc_lockmanerr 335544432L
1022
+ #define isc_journerr 335544433L
1023
+ #define isc_keytoobig 335544434L
1024
+ #define isc_nullsegkey 335544435L
1025
+ #define isc_sqlerr 335544436L
1026
+ #define isc_wrodynver 335544437L
1027
+ #define isc_funnotdef 335544438L
1028
+ #define isc_funmismat 335544439L
1029
+ #define isc_bad_msg_vec 335544440L
1030
+ #define isc_bad_detach 335544441L
1031
+ #define isc_noargacc_read 335544442L
1032
+ #define isc_noargacc_write 335544443L
1033
+ #define isc_read_only 335544444L
1034
+ #define isc_ext_err 335544445L
1035
+ #define isc_non_updatable 335544446L
1036
+ #define isc_no_rollback 335544447L
1037
+ #define isc_bad_sec_info 335544448L
1038
+ #define isc_invalid_sec_info 335544449L
1039
+ #define isc_misc_interpreted 335544450L
1040
+ #define isc_update_conflict 335544451L
1041
+ #define isc_unlicensed 335544452L
1042
+ #define isc_obj_in_use 335544453L
1043
+ #define isc_nofilter 335544454L
1044
+ #define isc_shadow_accessed 335544455L
1045
+ #define isc_invalid_sdl 335544456L
1046
+ #define isc_out_of_bounds 335544457L
1047
+ #define isc_invalid_dimension 335544458L
1048
+ #define isc_rec_in_limbo 335544459L
1049
+ #define isc_shadow_missing 335544460L
1050
+ #define isc_cant_validate 335544461L
1051
+ #define isc_cant_start_journal 335544462L
1052
+ #define isc_gennotdef 335544463L
1053
+ #define isc_cant_start_logging 335544464L
1054
+ #define isc_bad_segstr_type 335544465L
1055
+ #define isc_foreign_key 335544466L
1056
+ #define isc_high_minor 335544467L
1057
+ #define isc_tra_state 335544468L
1058
+ #define isc_trans_invalid 335544469L
1059
+ #define isc_buf_invalid 335544470L
1060
+ #define isc_indexnotdefined 335544471L
1061
+ #define isc_login 335544472L
1062
+ #define isc_invalid_bookmark 335544473L
1063
+ #define isc_bad_lock_level 335544474L
1064
+ #define isc_relation_lock 335544475L
1065
+ #define isc_record_lock 335544476L
1066
+ #define isc_max_idx 335544477L
1067
+ #define isc_jrn_enable 335544478L
1068
+ #define isc_old_failure 335544479L
1069
+ #define isc_old_in_progress 335544480L
1070
+ #define isc_old_no_space 335544481L
1071
+ #define isc_no_wal_no_jrn 335544482L
1072
+ #define isc_num_old_files 335544483L
1073
+ #define isc_wal_file_open 335544484L
1074
+ #define isc_bad_stmt_handle 335544485L
1075
+ #define isc_wal_failure 335544486L
1076
+ #define isc_walw_err 335544487L
1077
+ #define isc_logh_small 335544488L
1078
+ #define isc_logh_inv_version 335544489L
1079
+ #define isc_logh_open_flag 335544490L
1080
+ #define isc_logh_open_flag2 335544491L
1081
+ #define isc_logh_diff_dbname 335544492L
1082
+ #define isc_logf_unexpected_eof 335544493L
1083
+ #define isc_logr_incomplete 335544494L
1084
+ #define isc_logr_header_small 335544495L
1085
+ #define isc_logb_small 335544496L
1086
+ #define isc_wal_illegal_attach 335544497L
1087
+ #define isc_wal_invalid_wpb 335544498L
1088
+ #define isc_wal_err_rollover 335544499L
1089
+ #define isc_no_wal 335544500L
1090
+ #define isc_drop_wal 335544501L
1091
+ #define isc_stream_not_defined 335544502L
1092
+ #define isc_wal_subsys_error 335544503L
1093
+ #define isc_wal_subsys_corrupt 335544504L
1094
+ #define isc_no_archive 335544505L
1095
+ #define isc_shutinprog 335544506L
1096
+ #define isc_range_in_use 335544507L
1097
+ #define isc_range_not_found 335544508L
1098
+ #define isc_charset_not_found 335544509L
1099
+ #define isc_lock_timeout 335544510L
1100
+ #define isc_prcnotdef 335544511L
1101
+ #define isc_prcmismat 335544512L
1102
+ #define isc_wal_bugcheck 335544513L
1103
+ #define isc_wal_cant_expand 335544514L
1104
+ #define isc_codnotdef 335544515L
1105
+ #define isc_xcpnotdef 335544516L
1106
+ #define isc_except 335544517L
1107
+ #define isc_cache_restart 335544518L
1108
+ #define isc_bad_lock_handle 335544519L
1109
+ #define isc_jrn_present 335544520L
1110
+ #define isc_wal_err_rollover2 335544521L
1111
+ #define isc_wal_err_logwrite 335544522L
1112
+ #define isc_wal_err_jrn_comm 335544523L
1113
+ #define isc_wal_err_expansion 335544524L
1114
+ #define isc_wal_err_setup 335544525L
1115
+ #define isc_wal_err_ww_sync 335544526L
1116
+ #define isc_wal_err_ww_start 335544527L
1117
+ #define isc_shutdown 335544528L
1118
+ #define isc_existing_priv_mod 335544529L
1119
+ #define isc_primary_key_ref 335544530L
1120
+ #define isc_primary_key_notnull 335544531L
1121
+ #define isc_ref_cnstrnt_notfound 335544532L
1122
+ #define isc_foreign_key_notfound 335544533L
1123
+ #define isc_ref_cnstrnt_update 335544534L
1124
+ #define isc_check_cnstrnt_update 335544535L
1125
+ #define isc_check_cnstrnt_del 335544536L
1126
+ #define isc_integ_index_seg_del 335544537L
1127
+ #define isc_integ_index_seg_mod 335544538L
1128
+ #define isc_integ_index_del 335544539L
1129
+ #define isc_integ_index_mod 335544540L
1130
+ #define isc_check_trig_del 335544541L
1131
+ #define isc_check_trig_update 335544542L
1132
+ #define isc_cnstrnt_fld_del 335544543L
1133
+ #define isc_cnstrnt_fld_rename 335544544L
1134
+ #define isc_rel_cnstrnt_update 335544545L
1135
+ #define isc_constaint_on_view 335544546L
1136
+ #define isc_invld_cnstrnt_type 335544547L
1137
+ #define isc_primary_key_exists 335544548L
1138
+ #define isc_systrig_update 335544549L
1139
+ #define isc_not_rel_owner 335544550L
1140
+ #define isc_grant_obj_notfound 335544551L
1141
+ #define isc_grant_fld_notfound 335544552L
1142
+ #define isc_grant_nopriv 335544553L
1143
+ #define isc_nonsql_security_rel 335544554L
1144
+ #define isc_nonsql_security_fld 335544555L
1145
+ #define isc_wal_cache_err 335544556L
1146
+ #define isc_shutfail 335544557L
1147
+ #define isc_check_constraint 335544558L
1148
+ #define isc_bad_svc_handle 335544559L
1149
+ #define isc_shutwarn 335544560L
1150
+ #define isc_wrospbver 335544561L
1151
+ #define isc_bad_spb_form 335544562L
1152
+ #define isc_svcnotdef 335544563L
1153
+ #define isc_no_jrn 335544564L
1154
+ #define isc_transliteration_failed 335544565L
1155
+ #define isc_start_cm_for_wal 335544566L
1156
+ #define isc_wal_ovflow_log_required 335544567L
1157
+ #define isc_text_subtype 335544568L
1158
+ #define isc_dsql_error 335544569L
1159
+ #define isc_dsql_command_err 335544570L
1160
+ #define isc_dsql_constant_err 335544571L
1161
+ #define isc_dsql_cursor_err 335544572L
1162
+ #define isc_dsql_datatype_err 335544573L
1163
+ #define isc_dsql_decl_err 335544574L
1164
+ #define isc_dsql_cursor_update_err 335544575L
1165
+ #define isc_dsql_cursor_open_err 335544576L
1166
+ #define isc_dsql_cursor_close_err 335544577L
1167
+ #define isc_dsql_field_err 335544578L
1168
+ #define isc_dsql_internal_err 335544579L
1169
+ #define isc_dsql_relation_err 335544580L
1170
+ #define isc_dsql_procedure_err 335544581L
1171
+ #define isc_dsql_request_err 335544582L
1172
+ #define isc_dsql_sqlda_err 335544583L
1173
+ #define isc_dsql_var_count_err 335544584L
1174
+ #define isc_dsql_stmt_handle 335544585L
1175
+ #define isc_dsql_function_err 335544586L
1176
+ #define isc_dsql_blob_err 335544587L
1177
+ #define isc_collation_not_found 335544588L
1178
+ #define isc_collation_not_for_charset 335544589L
1179
+ #define isc_dsql_dup_option 335544590L
1180
+ #define isc_dsql_tran_err 335544591L
1181
+ #define isc_dsql_invalid_array 335544592L
1182
+ #define isc_dsql_max_arr_dim_exceeded 335544593L
1183
+ #define isc_dsql_arr_range_error 335544594L
1184
+ #define isc_dsql_trigger_err 335544595L
1185
+ #define isc_dsql_subselect_err 335544596L
1186
+ #define isc_dsql_crdb_prepare_err 335544597L
1187
+ #define isc_specify_field_err 335544598L
1188
+ #define isc_num_field_err 335544599L
1189
+ #define isc_col_name_err 335544600L
1190
+ #define isc_where_err 335544601L
1191
+ #define isc_table_view_err 335544602L
1192
+ #define isc_distinct_err 335544603L
1193
+ #define isc_key_field_count_err 335544604L
1194
+ #define isc_subquery_err 335544605L
1195
+ #define isc_expression_eval_err 335544606L
1196
+ #define isc_node_err 335544607L
1197
+ #define isc_command_end_err 335544608L
1198
+ #define isc_index_name 335544609L
1199
+ #define isc_exception_name 335544610L
1200
+ #define isc_field_name 335544611L
1201
+ #define isc_token_err 335544612L
1202
+ #define isc_union_err 335544613L
1203
+ #define isc_dsql_construct_err 335544614L
1204
+ #define isc_field_aggregate_err 335544615L
1205
+ #define isc_field_ref_err 335544616L
1206
+ #define isc_order_by_err 335544617L
1207
+ #define isc_return_mode_err 335544618L
1208
+ #define isc_extern_func_err 335544619L
1209
+ #define isc_alias_conflict_err 335544620L
1210
+ #define isc_procedure_conflict_error 335544621L
1211
+ #define isc_relation_conflict_err 335544622L
1212
+ #define isc_dsql_domain_err 335544623L
1213
+ #define isc_idx_seg_err 335544624L
1214
+ #define isc_node_name_err 335544625L
1215
+ #define isc_table_name 335544626L
1216
+ #define isc_proc_name 335544627L
1217
+ #define isc_idx_create_err 335544628L
1218
+ #define isc_wal_shadow_err 335544629L
1219
+ #define isc_dependency 335544630L
1220
+ #define isc_idx_key_err 335544631L
1221
+ #define isc_dsql_file_length_err 335544632L
1222
+ #define isc_dsql_shadow_number_err 335544633L
1223
+ #define isc_dsql_token_unk_err 335544634L
1224
+ #define isc_dsql_no_relation_alias 335544635L
1225
+ #define isc_indexname 335544636L
1226
+ #define isc_no_stream_plan 335544637L
1227
+ #define isc_stream_twice 335544638L
1228
+ #define isc_stream_not_found 335544639L
1229
+ #define isc_collation_requires_text 335544640L
1230
+ #define isc_dsql_domain_not_found 335544641L
1231
+ #define isc_index_unused 335544642L
1232
+ #define isc_dsql_self_join 335544643L
1233
+ #define isc_stream_bof 335544644L
1234
+ #define isc_stream_crack 335544645L
1235
+ #define isc_db_or_file_exists 335544646L
1236
+ #define isc_invalid_operator 335544647L
1237
+ #define isc_conn_lost 335544648L
1238
+ #define isc_bad_checksum 335544649L
1239
+ #define isc_page_type_err 335544650L
1240
+ #define isc_ext_readonly_err 335544651L
1241
+ #define isc_sing_select_err 335544652L
1242
+ #define isc_psw_attach 335544653L
1243
+ #define isc_psw_start_trans 335544654L
1244
+ #define isc_invalid_direction 335544655L
1245
+ #define isc_dsql_var_conflict 335544656L
1246
+ #define isc_dsql_no_blob_array 335544657L
1247
+ #define isc_dsql_base_table 335544658L
1248
+ #define isc_duplicate_base_table 335544659L
1249
+ #define isc_view_alias 335544660L
1250
+ #define isc_index_root_page_full 335544661L
1251
+ #define isc_dsql_blob_type_unknown 335544662L
1252
+ #define isc_req_max_clones_exceeded 335544663L
1253
+ #define isc_dsql_duplicate_spec 335544664L
1254
+ #define isc_unique_key_violation 335544665L
1255
+ #define isc_srvr_version_too_old 335544666L
1256
+ #define isc_drdb_completed_with_errs 335544667L
1257
+ #define isc_dsql_procedure_use_err 335544668L
1258
+ #define isc_dsql_count_mismatch 335544669L
1259
+ #define isc_blob_idx_err 335544670L
1260
+ #define isc_array_idx_err 335544671L
1261
+ #define isc_key_field_err 335544672L
1262
+ #define isc_no_delete 335544673L
1263
+ #define isc_del_last_field 335544674L
1264
+ #define isc_sort_err 335544675L
1265
+ #define isc_sort_mem_err 335544676L
1266
+ #define isc_version_err 335544677L
1267
+ #define isc_inval_key_posn 335544678L
1268
+ #define isc_no_segments_err 335544679L
1269
+ #define isc_crrp_data_err 335544680L
1270
+ #define isc_rec_size_err 335544681L
1271
+ #define isc_dsql_field_ref 335544682L
1272
+ #define isc_req_depth_exceeded 335544683L
1273
+ #define isc_no_field_access 335544684L
1274
+ #define isc_no_dbkey 335544685L
1275
+ #define isc_jrn_format_err 335544686L
1276
+ #define isc_jrn_file_full 335544687L
1277
+ #define isc_dsql_open_cursor_request 335544688L
1278
+ #define isc_ib_error 335544689L
1279
+ #define isc_cache_redef 335544690L
1280
+ #define isc_cache_too_small 335544691L
1281
+ #define isc_log_redef 335544692L
1282
+ #define isc_log_too_small 335544693L
1283
+ #define isc_partition_too_small 335544694L
1284
+ #define isc_partition_not_supp 335544695L
1285
+ #define isc_log_length_spec 335544696L
1286
+ #define isc_precision_err 335544697L
1287
+ #define isc_scale_nogt 335544698L
1288
+ #define isc_expec_short 335544699L
1289
+ #define isc_expec_long 335544700L
1290
+ #define isc_expec_ushort 335544701L
1291
+ #define isc_like_escape_invalid 335544702L
1292
+ #define isc_svcnoexe 335544703L
1293
+ #define isc_net_lookup_err 335544704L
1294
+ #define isc_service_unknown 335544705L
1295
+ #define isc_host_unknown 335544706L
1296
+ #define isc_grant_nopriv_on_base 335544707L
1297
+ #define isc_dyn_fld_ambiguous 335544708L
1298
+ #define isc_dsql_agg_ref_err 335544709L
1299
+ #define isc_complex_view 335544710L
1300
+ #define isc_unprepared_stmt 335544711L
1301
+ #define isc_expec_positive 335544712L
1302
+ #define isc_dsql_sqlda_value_err 335544713L
1303
+ #define isc_invalid_array_id 335544714L
1304
+ #define isc_extfile_uns_op 335544715L
1305
+ #define isc_svc_in_use 335544716L
1306
+ #define isc_err_stack_limit 335544717L
1307
+ #define isc_invalid_key 335544718L
1308
+ #define isc_net_init_error 335544719L
1309
+ #define isc_loadlib_failure 335544720L
1310
+ #define isc_network_error 335544721L
1311
+ #define isc_net_connect_err 335544722L
1312
+ #define isc_net_connect_listen_err 335544723L
1313
+ #define isc_net_event_connect_err 335544724L
1314
+ #define isc_net_event_listen_err 335544725L
1315
+ #define isc_net_read_err 335544726L
1316
+ #define isc_net_write_err 335544727L
1317
+ #define isc_integ_index_deactivate 335544728L
1318
+ #define isc_integ_deactivate_primary 335544729L
1319
+ #define isc_cse_not_supported 335544730L
1320
+ #define isc_tra_must_sweep 335544731L
1321
+ #define isc_unsupported_network_drive 335544732L
1322
+ #define isc_io_create_err 335544733L
1323
+ #define isc_io_open_err 335544734L
1324
+ #define isc_io_close_err 335544735L
1325
+ #define isc_io_read_err 335544736L
1326
+ #define isc_io_write_err 335544737L
1327
+ #define isc_io_delete_err 335544738L
1328
+ #define isc_io_access_err 335544739L
1329
+ #define isc_udf_exception 335544740L
1330
+ #define isc_lost_db_connection 335544741L
1331
+ #define isc_no_write_user_priv 335544742L
1332
+ #define isc_token_too_long 335544743L
1333
+ #define isc_max_att_exceeded 335544744L
1334
+ #define isc_login_same_as_role_name 335544745L
1335
+ #define isc_reftable_requires_pk 335544746L
1336
+ #define isc_usrname_too_long 335544747L
1337
+ #define isc_password_too_long 335544748L
1338
+ #define isc_usrname_required 335544749L
1339
+ #define isc_password_required 335544750L
1340
+ #define isc_bad_protocol 335544751L
1341
+ #define isc_dup_usrname_found 335544752L
1342
+ #define isc_usrname_not_found 335544753L
1343
+ #define isc_error_adding_sec_record 335544754L
1344
+ #define isc_error_modifying_sec_record 335544755L
1345
+ #define isc_error_deleting_sec_record 335544756L
1346
+ #define isc_error_updating_sec_db 335544757L
1347
+ #define isc_sort_rec_size_err 335544758L
1348
+ #define isc_bad_default_value 335544759L
1349
+ #define isc_invalid_clause 335544760L
1350
+ #define isc_too_many_handles 335544761L
1351
+ #define isc_optimizer_blk_exc 335544762L
1352
+ #define isc_invalid_string_constant 335544763L
1353
+ #define isc_transitional_date 335544764L
1354
+ #define isc_read_only_database 335544765L
1355
+ #define isc_must_be_dialect_2_and_up 335544766L
1356
+ #define isc_blob_filter_exception 335544767L
1357
+ #define isc_exception_access_violation 335544768L
1358
+ #define isc_exception_datatype_missalignment 335544769L
1359
+ #define isc_exception_array_bounds_exceeded 335544770L
1360
+ #define isc_exception_float_denormal_operand 335544771L
1361
+ #define isc_exception_float_divide_by_zero 335544772L
1362
+ #define isc_exception_float_inexact_result 335544773L
1363
+ #define isc_exception_float_invalid_operand 335544774L
1364
+ #define isc_exception_float_overflow 335544775L
1365
+ #define isc_exception_float_stack_check 335544776L
1366
+ #define isc_exception_float_underflow 335544777L
1367
+ #define isc_exception_integer_divide_by_zero 335544778L
1368
+ #define isc_exception_integer_overflow 335544779L
1369
+ #define isc_exception_unknown 335544780L
1370
+ #define isc_exception_stack_overflow 335544781L
1371
+ #define isc_exception_sigsegv 335544782L
1372
+ #define isc_exception_sigill 335544783L
1373
+ #define isc_exception_sigbus 335544784L
1374
+ #define isc_exception_sigfpe 335544785L
1375
+ #define isc_ext_file_delete 335544786L
1376
+ #define isc_ext_file_modify 335544787L
1377
+ #define isc_adm_task_denied 335544788L
1378
+ #define isc_extract_input_mismatch 335544789L
1379
+ #define isc_insufficient_svc_privileges 335544790L
1380
+ #define isc_file_in_use 335544791L
1381
+ #define isc_service_att_err 335544792L
1382
+ #define isc_ddl_not_allowed_by_db_sql_dial 335544793L
1383
+ #define isc_cancelled 335544794L
1384
+ #define isc_unexp_spb_form 335544795L
1385
+ #define isc_sql_dialect_datatype_unsupport 335544796L
1386
+ #define isc_svcnouser 335544797L
1387
+ #define isc_depend_on_uncommitted_rel 335544798L
1388
+ #define isc_svc_name_missing 335544799L
1389
+ #define isc_too_many_contexts 335544800L
1390
+ #define isc_datype_notsup 335544801L
1391
+ #define isc_dialect_reset_warning 335544802L
1392
+ #define isc_dialect_not_changed 335544803L
1393
+ #define isc_database_create_failed 335544804L
1394
+ #define isc_inv_dialect_specified 335544805L
1395
+ #define isc_valid_db_dialects 335544806L
1396
+ #define isc_sqlwarn 335544807L
1397
+ #define isc_dtype_renamed 335544808L
1398
+ #define isc_extern_func_dir_error 335544809L
1399
+ #define isc_date_range_exceeded 335544810L
1400
+ #define isc_inv_client_dialect_specified 335544811L
1401
+ #define isc_valid_client_dialects 335544812L
1402
+ #define isc_optimizer_between_err 335544813L
1403
+ #define isc_service_not_supported 335544814L
1404
+ #define isc_generator_name 335544815L
1405
+ #define isc_udf_name 335544816L
1406
+ #define isc_bad_limit_param 335544817L
1407
+ #define isc_bad_skip_param 335544818L
1408
+ #define isc_io_32bit_exceeded_err 335544819L
1409
+ #define isc_invalid_savepoint 335544820L
1410
+ #define isc_dsql_column_pos_err 335544821L
1411
+ #define isc_dsql_agg_where_err 335544822L
1412
+ #define isc_dsql_agg_group_err 335544823L
1413
+ #define isc_dsql_agg_column_err 335544824L
1414
+ #define isc_dsql_agg_having_err 335544825L
1415
+ #define isc_dsql_agg_nested_err 335544826L
1416
+ #define isc_exec_sql_invalid_arg 335544827L
1417
+ #define isc_exec_sql_invalid_req 335544828L
1418
+ #define isc_exec_sql_invalid_var 335544829L
1419
+ #define isc_exec_sql_max_call_exceeded 335544830L
1420
+ #define isc_conf_access_denied 335544831L
1421
+ #define isc_wrong_backup_state 335544832L
1422
+ #define isc_wal_backup_err 335544833L
1423
+ #define isc_cursor_not_open 335544834L
1424
+ #define isc_bad_shutdown_mode 335544835L
1425
+ #define isc_concat_overflow 335544836L
1426
+ #define isc_bad_substring_offset 335544837L
1427
+ #define isc_foreign_key_target_doesnt_exist 335544838L
1428
+ #define isc_foreign_key_references_present 335544839L
1429
+ #define isc_no_update 335544840L
1430
+ #define isc_cursor_already_open 335544841L
1431
+ #define isc_stack_trace 335544842L
1432
+ #define isc_ctx_var_not_found 335544843L
1433
+ #define isc_ctx_namespace_invalid 335544844L
1434
+ #define isc_ctx_too_big 335544845L
1435
+ #define isc_ctx_bad_argument 335544846L
1436
+ #define isc_identifier_too_long 335544847L
1437
+ #define isc_except2 335544848L
1438
+ #define isc_malformed_string 335544849L
1439
+ #define isc_prc_out_param_mismatch 335544850L
1440
+ #define isc_command_end_err2 335544851L
1441
+ #define isc_partner_idx_incompat_type 335544852L
1442
+ #define isc_bad_substring_length 335544853L
1443
+ #define isc_charset_not_installed 335544854L
1444
+ #define isc_collation_not_installed 335544855L
1445
+ #define isc_att_shutdown 335544856L
1446
+ #define isc_blobtoobig 335544857L
1447
+ #define isc_must_have_phys_field 335544858L
1448
+ #define isc_invalid_time_precision 335544859L
1449
+ #define isc_blob_convert_error 335544860L
1450
+ #define isc_array_convert_error 335544861L
1451
+ #define isc_record_lock_not_supp 335544862L
1452
+ #define isc_partner_idx_not_found 335544863L
1453
+ #define isc_tra_num_exc 335544864L
1454
+ #define isc_field_disappeared 335544865L
1455
+ #define isc_met_wrong_gtt_scope 335544866L
1456
+ #define isc_subtype_for_internal_use 335544867L
1457
+ #define isc_illegal_prc_type 335544868L
1458
+ #define isc_invalid_sort_datatype 335544869L
1459
+ #define isc_collation_name 335544870L
1460
+ #define isc_domain_name 335544871L
1461
+ #define isc_domnotdef 335544872L
1462
+ #define isc_array_max_dimensions 335544873L
1463
+ #define isc_max_db_per_trans_allowed 335544874L
1464
+ #define isc_bad_debug_format 335544875L
1465
+ #define isc_bad_proc_BLR 335544876L
1466
+ #define isc_key_too_big 335544877L
1467
+ #define isc_concurrent_transaction 335544878L
1468
+ #define isc_not_valid_for_var 335544879L
1469
+ #define isc_not_valid_for 335544880L
1470
+ #define isc_need_difference 335544881L
1471
+ #define isc_long_login 335544882L
1472
+ #define isc_fldnotdef2 335544883L
1473
+ #define isc_gfix_db_name 335740929L
1474
+ #define isc_gfix_invalid_sw 335740930L
1475
+ #define isc_gfix_incmp_sw 335740932L
1476
+ #define isc_gfix_replay_req 335740933L
1477
+ #define isc_gfix_pgbuf_req 335740934L
1478
+ #define isc_gfix_val_req 335740935L
1479
+ #define isc_gfix_pval_req 335740936L
1480
+ #define isc_gfix_trn_req 335740937L
1481
+ #define isc_gfix_full_req 335740940L
1482
+ #define isc_gfix_usrname_req 335740941L
1483
+ #define isc_gfix_pass_req 335740942L
1484
+ #define isc_gfix_subs_name 335740943L
1485
+ #define isc_gfix_wal_req 335740944L
1486
+ #define isc_gfix_sec_req 335740945L
1487
+ #define isc_gfix_nval_req 335740946L
1488
+ #define isc_gfix_type_shut 335740947L
1489
+ #define isc_gfix_retry 335740948L
1490
+ #define isc_gfix_retry_db 335740951L
1491
+ #define isc_gfix_exceed_max 335740991L
1492
+ #define isc_gfix_corrupt_pool 335740992L
1493
+ #define isc_gfix_mem_exhausted 335740993L
1494
+ #define isc_gfix_bad_pool 335740994L
1495
+ #define isc_gfix_trn_not_valid 335740995L
1496
+ #define isc_gfix_unexp_eoi 335741012L
1497
+ #define isc_gfix_recon_fail 335741018L
1498
+ #define isc_gfix_trn_unknown 335741036L
1499
+ #define isc_gfix_mode_req 335741038L
1500
+ #define isc_gfix_opt_SQL_dialect 335741039L
1501
+ #define isc_gfix_pzval_req 335741042L
1502
+ #define isc_dsql_dbkey_from_non_table 336003074L
1503
+ #define isc_dsql_transitional_numeric 336003075L
1504
+ #define isc_dsql_dialect_warning_expr 336003076L
1505
+ #define isc_sql_db_dialect_dtype_unsupport 336003077L
1506
+ #define isc_isc_sql_dialect_conflict_num 336003079L
1507
+ #define isc_dsql_warning_number_ambiguous 336003080L
1508
+ #define isc_dsql_warning_number_ambiguous1 336003081L
1509
+ #define isc_dsql_warn_precision_ambiguous 336003082L
1510
+ #define isc_dsql_warn_precision_ambiguous1 336003083L
1511
+ #define isc_dsql_warn_precision_ambiguous2 336003084L
1512
+ #define isc_dsql_ambiguous_field_name 336003085L
1513
+ #define isc_dsql_udf_return_pos_err 336003086L
1514
+ #define isc_dsql_invalid_label 336003087L
1515
+ #define isc_dsql_datatypes_not_comparable 336003088L
1516
+ #define isc_dsql_cursor_invalid 336003089L
1517
+ #define isc_dsql_cursor_redefined 336003090L
1518
+ #define isc_dsql_cursor_not_found 336003091L
1519
+ #define isc_dsql_cursor_exists 336003092L
1520
+ #define isc_dsql_cursor_rel_ambiguous 336003093L
1521
+ #define isc_dsql_cursor_rel_not_found 336003094L
1522
+ #define isc_dsql_cursor_not_open 336003095L
1523
+ #define isc_dsql_type_not_supp_ext_tab 336003096L
1524
+ #define isc_dsql_feature_not_supported_ods 336003097L
1525
+ #define isc_primary_key_required 336003098L
1526
+ #define isc_upd_ins_doesnt_match_pk 336003099L
1527
+ #define isc_upd_ins_doesnt_match_matching 336003100L
1528
+ #define isc_upd_ins_with_complex_view 336003101L
1529
+ #define isc_dsql_incompatible_trigger_type 336003102L
1530
+ #define isc_dsql_db_trigger_type_cant_change 336003103L
1531
+ #define isc_dyn_role_does_not_exist 336068796L
1532
+ #define isc_dyn_no_grant_admin_opt 336068797L
1533
+ #define isc_dyn_user_not_role_member 336068798L
1534
+ #define isc_dyn_delete_role_failed 336068799L
1535
+ #define isc_dyn_grant_role_to_user 336068800L
1536
+ #define isc_dyn_inv_sql_role_name 336068801L
1537
+ #define isc_dyn_dup_sql_role 336068802L
1538
+ #define isc_dyn_kywd_spec_for_role 336068803L
1539
+ #define isc_dyn_roles_not_supported 336068804L
1540
+ #define isc_dyn_domain_name_exists 336068812L
1541
+ #define isc_dyn_field_name_exists 336068813L
1542
+ #define isc_dyn_dependency_exists 336068814L
1543
+ #define isc_dyn_dtype_invalid 336068815L
1544
+ #define isc_dyn_char_fld_too_small 336068816L
1545
+ #define isc_dyn_invalid_dtype_conversion 336068817L
1546
+ #define isc_dyn_dtype_conv_invalid 336068818L
1547
+ #define isc_dyn_zero_len_id 336068820L
1548
+ #define isc_max_coll_per_charset 336068829L
1549
+ #define isc_invalid_coll_attr 336068830L
1550
+ #define isc_dyn_wrong_gtt_scope 336068840L
1551
+ #define isc_dyn_scale_too_big 336068852L
1552
+ #define isc_dyn_precision_too_small 336068853L
1553
+ #define isc_dyn_miss_priv_warning 336068855L
1554
+ #define isc_dyn_ods_not_supp_feature 336068856L
1555
+ #define isc_gbak_unknown_switch 336330753L
1556
+ #define isc_gbak_page_size_missing 336330754L
1557
+ #define isc_gbak_page_size_toobig 336330755L
1558
+ #define isc_gbak_redir_ouput_missing 336330756L
1559
+ #define isc_gbak_switches_conflict 336330757L
1560
+ #define isc_gbak_unknown_device 336330758L
1561
+ #define isc_gbak_no_protection 336330759L
1562
+ #define isc_gbak_page_size_not_allowed 336330760L
1563
+ #define isc_gbak_multi_source_dest 336330761L
1564
+ #define isc_gbak_filename_missing 336330762L
1565
+ #define isc_gbak_dup_inout_names 336330763L
1566
+ #define isc_gbak_inv_page_size 336330764L
1567
+ #define isc_gbak_db_specified 336330765L
1568
+ #define isc_gbak_db_exists 336330766L
1569
+ #define isc_gbak_unk_device 336330767L
1570
+ #define isc_gbak_blob_info_failed 336330772L
1571
+ #define isc_gbak_unk_blob_item 336330773L
1572
+ #define isc_gbak_get_seg_failed 336330774L
1573
+ #define isc_gbak_close_blob_failed 336330775L
1574
+ #define isc_gbak_open_blob_failed 336330776L
1575
+ #define isc_gbak_put_blr_gen_id_failed 336330777L
1576
+ #define isc_gbak_unk_type 336330778L
1577
+ #define isc_gbak_comp_req_failed 336330779L
1578
+ #define isc_gbak_start_req_failed 336330780L
1579
+ #define isc_gbak_rec_failed 336330781L
1580
+ #define isc_gbak_rel_req_failed 336330782L
1581
+ #define isc_gbak_db_info_failed 336330783L
1582
+ #define isc_gbak_no_db_desc 336330784L
1583
+ #define isc_gbak_db_create_failed 336330785L
1584
+ #define isc_gbak_decomp_len_error 336330786L
1585
+ #define isc_gbak_tbl_missing 336330787L
1586
+ #define isc_gbak_blob_col_missing 336330788L
1587
+ #define isc_gbak_create_blob_failed 336330789L
1588
+ #define isc_gbak_put_seg_failed 336330790L
1589
+ #define isc_gbak_rec_len_exp 336330791L
1590
+ #define isc_gbak_inv_rec_len 336330792L
1591
+ #define isc_gbak_exp_data_type 336330793L
1592
+ #define isc_gbak_gen_id_failed 336330794L
1593
+ #define isc_gbak_unk_rec_type 336330795L
1594
+ #define isc_gbak_inv_bkup_ver 336330796L
1595
+ #define isc_gbak_missing_bkup_desc 336330797L
1596
+ #define isc_gbak_string_trunc 336330798L
1597
+ #define isc_gbak_cant_rest_record 336330799L
1598
+ #define isc_gbak_send_failed 336330800L
1599
+ #define isc_gbak_no_tbl_name 336330801L
1600
+ #define isc_gbak_unexp_eof 336330802L
1601
+ #define isc_gbak_db_format_too_old 336330803L
1602
+ #define isc_gbak_inv_array_dim 336330804L
1603
+ #define isc_gbak_xdr_len_expected 336330807L
1604
+ #define isc_gbak_open_bkup_error 336330817L
1605
+ #define isc_gbak_open_error 336330818L
1606
+ #define isc_gbak_missing_block_fac 336330934L
1607
+ #define isc_gbak_inv_block_fac 336330935L
1608
+ #define isc_gbak_block_fac_specified 336330936L
1609
+ #define isc_gbak_missing_username 336330940L
1610
+ #define isc_gbak_missing_password 336330941L
1611
+ #define isc_gbak_missing_skipped_bytes 336330952L
1612
+ #define isc_gbak_inv_skipped_bytes 336330953L
1613
+ #define isc_gbak_err_restore_charset 336330965L
1614
+ #define isc_gbak_err_restore_collation 336330967L
1615
+ #define isc_gbak_read_error 336330972L
1616
+ #define isc_gbak_write_error 336330973L
1617
+ #define isc_gbak_db_in_use 336330985L
1618
+ #define isc_gbak_sysmemex 336330990L
1619
+ #define isc_gbak_restore_role_failed 336331002L
1620
+ #define isc_gbak_role_op_missing 336331005L
1621
+ #define isc_gbak_page_buffers_missing 336331010L
1622
+ #define isc_gbak_page_buffers_wrong_param 336331011L
1623
+ #define isc_gbak_page_buffers_restore 336331012L
1624
+ #define isc_gbak_inv_size 336331014L
1625
+ #define isc_gbak_file_outof_sequence 336331015L
1626
+ #define isc_gbak_join_file_missing 336331016L
1627
+ #define isc_gbak_stdin_not_supptd 336331017L
1628
+ #define isc_gbak_stdout_not_supptd 336331018L
1629
+ #define isc_gbak_bkup_corrupt 336331019L
1630
+ #define isc_gbak_unk_db_file_spec 336331020L
1631
+ #define isc_gbak_hdr_write_failed 336331021L
1632
+ #define isc_gbak_disk_space_ex 336331022L
1633
+ #define isc_gbak_size_lt_min 336331023L
1634
+ #define isc_gbak_svc_name_missing 336331025L
1635
+ #define isc_gbak_not_ownr 336331026L
1636
+ #define isc_gbak_mode_req 336331031L
1637
+ #define isc_gbak_just_data 336331033L
1638
+ #define isc_gbak_data_only 336331034L
1639
+ #define isc_dsql_too_old_ods 336397205L
1640
+ #define isc_dsql_table_not_found 336397206L
1641
+ #define isc_dsql_view_not_found 336397207L
1642
+ #define isc_dsql_line_col_error 336397208L
1643
+ #define isc_dsql_unknown_pos 336397209L
1644
+ #define isc_dsql_no_dup_name 336397210L
1645
+ #define isc_dsql_too_many_values 336397211L
1646
+ #define isc_dsql_no_array_computed 336397212L
1647
+ #define isc_dsql_implicit_domain_name 336397213L
1648
+ #define isc_dsql_only_can_subscript_array 336397214L
1649
+ #define isc_dsql_max_sort_items 336397215L
1650
+ #define isc_dsql_max_group_items 336397216L
1651
+ #define isc_dsql_conflicting_sort_field 336397217L
1652
+ #define isc_dsql_derived_table_more_columns 336397218L
1653
+ #define isc_dsql_derived_table_less_columns 336397219L
1654
+ #define isc_dsql_derived_field_unnamed 336397220L
1655
+ #define isc_dsql_derived_field_dup_name 336397221L
1656
+ #define isc_dsql_derived_alias_select 336397222L
1657
+ #define isc_dsql_derived_alias_field 336397223L
1658
+ #define isc_dsql_auto_field_bad_pos 336397224L
1659
+ #define isc_dsql_cte_wrong_reference 336397225L
1660
+ #define isc_dsql_cte_cycle 336397226L
1661
+ #define isc_dsql_cte_outer_join 336397227L
1662
+ #define isc_dsql_cte_mult_references 336397228L
1663
+ #define isc_dsql_cte_not_a_union 336397229L
1664
+ #define isc_dsql_cte_nonrecurs_after_recurs 336397230L
1665
+ #define isc_dsql_cte_wrong_clause 336397231L
1666
+ #define isc_dsql_cte_union_all 336397232L
1667
+ #define isc_dsql_cte_miss_nonrecursive 336397233L
1668
+ #define isc_dsql_cte_nested_with 336397234L
1669
+ #define isc_dsql_col_more_than_once_using 336397235L
1670
+ #define isc_dsql_unsupp_feature_dialect 336397236L
1671
+ #define isc_dsql_cte_not_used 336397237L
1672
+ #define isc_gsec_cant_open_db 336723983L
1673
+ #define isc_gsec_switches_error 336723984L
1674
+ #define isc_gsec_no_op_spec 336723985L
1675
+ #define isc_gsec_no_usr_name 336723986L
1676
+ #define isc_gsec_err_add 336723987L
1677
+ #define isc_gsec_err_modify 336723988L
1678
+ #define isc_gsec_err_find_mod 336723989L
1679
+ #define isc_gsec_err_rec_not_found 336723990L
1680
+ #define isc_gsec_err_delete 336723991L
1681
+ #define isc_gsec_err_find_del 336723992L
1682
+ #define isc_gsec_err_find_disp 336723996L
1683
+ #define isc_gsec_inv_param 336723997L
1684
+ #define isc_gsec_op_specified 336723998L
1685
+ #define isc_gsec_pw_specified 336723999L
1686
+ #define isc_gsec_uid_specified 336724000L
1687
+ #define isc_gsec_gid_specified 336724001L
1688
+ #define isc_gsec_proj_specified 336724002L
1689
+ #define isc_gsec_org_specified 336724003L
1690
+ #define isc_gsec_fname_specified 336724004L
1691
+ #define isc_gsec_mname_specified 336724005L
1692
+ #define isc_gsec_lname_specified 336724006L
1693
+ #define isc_gsec_inv_switch 336724008L
1694
+ #define isc_gsec_amb_switch 336724009L
1695
+ #define isc_gsec_no_op_specified 336724010L
1696
+ #define isc_gsec_params_not_allowed 336724011L
1697
+ #define isc_gsec_incompat_switch 336724012L
1698
+ #define isc_gsec_inv_username 336724044L
1699
+ #define isc_gsec_inv_pw_length 336724045L
1700
+ #define isc_gsec_db_specified 336724046L
1701
+ #define isc_gsec_db_admin_specified 336724047L
1702
+ #define isc_gsec_db_admin_pw_specified 336724048L
1703
+ #define isc_gsec_sql_role_specified 336724049L
1704
+ #define isc_license_no_file 336789504L
1705
+ #define isc_license_op_specified 336789523L
1706
+ #define isc_license_op_missing 336789524L
1707
+ #define isc_license_inv_switch 336789525L
1708
+ #define isc_license_inv_switch_combo 336789526L
1709
+ #define isc_license_inv_op_combo 336789527L
1710
+ #define isc_license_amb_switch 336789528L
1711
+ #define isc_license_inv_parameter 336789529L
1712
+ #define isc_license_param_specified 336789530L
1713
+ #define isc_license_param_req 336789531L
1714
+ #define isc_license_syntx_error 336789532L
1715
+ #define isc_license_dup_id 336789534L
1716
+ #define isc_license_inv_id_key 336789535L
1717
+ #define isc_license_err_remove 336789536L
1718
+ #define isc_license_err_update 336789537L
1719
+ #define isc_license_err_convert 336789538L
1720
+ #define isc_license_err_unk 336789539L
1721
+ #define isc_license_svc_err_add 336789540L
1722
+ #define isc_license_svc_err_remove 336789541L
1723
+ #define isc_license_eval_exists 336789563L
1724
+ #define isc_gstat_unknown_switch 336920577L
1725
+ #define isc_gstat_retry 336920578L
1726
+ #define isc_gstat_wrong_ods 336920579L
1727
+ #define isc_gstat_unexpected_eof 336920580L
1728
+ #define isc_gstat_open_err 336920605L
1729
+ #define isc_gstat_read_err 336920606L
1730
+ #define isc_gstat_sysmemex 336920607L
1731
+ #define isc_fbsvcmgr_bad_am 336986113L
1732
+ #define isc_fbsvcmgr_bad_wm 336986114L
1733
+ #define isc_fbsvcmgr_bad_rs 336986115L
1734
+ #define isc_fbsvcmgr_info_err 336986116L
1735
+ #define isc_fbsvcmgr_query_err 336986117L
1736
+ #define isc_fbsvcmgr_switch_unknown 336986118L
1737
+ #define isc_err_max 827
1738
+
1739
+ #endif
1740
+
1741
+ #endif /* JRD_GEN_IBERROR_H */