Skip to content
Navigation Menu
{{ message }}
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplberrors.xml
More file actions
1670 lines (1667 loc) · 228 KB
/
plberrors.xml
File metadata and controls
1670 lines (1667 loc) · 228 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<Runtime_Errors>
<Version>10.8</Version>
<Error Number="A01" SubCode= "" Type="Interrupts Prevented" Description="FILEPI already in effect. Another FILEPI may not be initiated until current one expires or a FILEPI 0 or PI 0 is executed." />
<Error Number="A02" SubCode= "" Type="Interrupts Prevented" Description="A FILEPI referenced one or more unopened files." />
<Error Number="A03" SubCode= "" Type="Interrupts Prevented" Description="A FILEPI was executed against a file that has been opened with record locking." />
<Error Number="A04" SubCode= "" Type="Interrupts Prevented" Description="A READ using the 'LK' suffix has been executed for a file that is not open in SHARE mode." />
<Error Number="A05" SubCode= "" Type="Interrupts Prevented" Description="A READ using 'LK' suffix has been executed for a file that is open without record locking support." />
<Error Number="A06" SubCode= "" Type="Interrupts Prevented" Description="A file in the TRANSACTION START file list is not open." />
<Error Number="A07" SubCode= "" Type="Interrupts Prevented" Description="A FILEPI operation specified more than 50 managed files while accessing a SUNDM data manager." />
<Error Number="A08" SubCode= "" Type="Interrupts Prevented" Description="A FILE variable opened in a record locking mode is included in the TRANSACTION START {file lock list}." />
<Error Number="C03" SubCode= "" Type="Chain" Description="The specified program could not be found." />
<Error Number="C04" SubCode= "" Type="Chain" Description="Bad common file alignment. Common files are specified in the new program that were not specified (in those same positions in the UDA) in the original program." />
<Error Number="C05" SubCode= "" Type="Chain" Description="Incompatible program. Both programs must be compiled with compatible compiler versions." />
<Error Number="C06" SubCode= "" Type="Chain" Description="Invalid program file format. Re-compile the program." />
<Error Number="C07" SubCode= "" Type="Chain" Description="Insufficient memory resources exist to load the program." />
<Error Number="C08" SubCode= "" Type="Chain" Description="Could not create ROLLOUT file. Check rights, space utilization and number of file handles available." />
<Error Number="C09" SubCode= "" Type="Chain" Description="Common data misalignment or problem with global data variables where the data types and size must be the same." />
<Error Number="C09" SubCode= "1" Type="Chain" Description="Global data area overflow." />
<Error Number="C09" SubCode= "10" Type="Chain" Description="Misaligned common. Module and variable address are returned as additional information in the error variable." />
<Error Number="C09" SubCode= "11" Type="Chain" Description="Invalid data type encountered (Possible data corruption). Module and variable address are returned as additional information in the error variable." />
<Error Number="C09" SubCode= "20" Type="Chain" Description="Global variable declared size different from already loaded variable. Module and variable address are returned as additional information in the error variable." />
<Error Number="C09" SubCode= "21" Type="Chain" Description="Global variable defined as different type from already loaded variable. Module and variable address are returned as additional information in the error variable." />
<Error Number="C09" SubCode= "22" Type="Chain" Description="Global array variable has a different number of variables from currently loaded array variable. Module and variable address are returned as additional information in the error variable." />
<Error Number="C09" SubCode= "25" Type="Chain" Description="Invalid global file control word for a FILELIST. Global memory has been corrupted for unexplained reasons." />
<Error Number="C09" SubCode= "26" Type="Chain" Description="Unable to establish a global FILELIST primary file. Insufficient memory." />
<Error Number="C11" SubCode= "" Type="Chain" Description="Null variable used for program name or name too long." />
<Error Number="C13" SubCode= "" Type="Chain" Description="Unable to maintain spooling across program chain, spooling disabled." />
<Error Number="C15" SubCode= "" Type="Chain" Description="LOADMOD module may not be loaded or a procedure is not defined within a specified LOADMOD module." />
<Error Number="C15" SubCode= "0" Type="Chain" Description="Unable to locate object file or procedure name." />
<Error Number="C15" SubCode= "4" Type="Chain" Description="Unable to translate object code file byte order to proper format. One possible cause is corrupted object code file." />
<Error Number="C15" SubCode= "9" Type="Chain" Description="Insufficient allocated memory available to load the module. Use the '-mNNNNNN' runtime command line option to increase the allocated memory. The value specified is in bytes. If the option is not specified, the runtime default is 1,024,000 bytes." />
<Error Number="C15" SubCode= "12" Type="Chain" Description="The minimum runtime version specified in the object code file is incompatible with the runtime version executing." />
<Error Number="C15" SubCode= "13" Type="Chain" Description="The load module forward/reverse order format is invalid for the runtime being used. This error could indicate that the object code file is corrupted." />
<Error Number="C15" SubCode= "17" Type="Chain" Description="Unable to seek to locations within a load module. The likely cause is an object code file with incorrect information in the header." />
<Error Number="C15" SubCode= "16" Type="Chain" Description="Unable to read a specified number of bytes from the load module. Possible causes are a module that was compiled with errors or a corrupted module is being used." />
<Error Number="C15" SubCode= "21" Type="Chain" Description="External name null." />
<Error Number="C15" SubCode= "22" Type="Chain" Description="Internal name greater than fifty (50) bytes long." />
<Error Number="C15" SubCode= "23" Type="Chain" Description="User procedure not provided." />
<Error Number="C15" SubCode= "24" Type="Chain" Description="CALLS name variable null." />
<Error Number="C15" SubCode= "25" Type="Chain" Description="CALLS procedure not found. Possible causes are the routine does not exist in any loaded module or the case for the routine name does not match the name of the routine name compiled into the load module." />
<Error Number="C15" SubCode= "26" Type="Chain" Description="Unable to resolve external procedure." />
<Error Number="C15" SubCode= "27" Type="Chain" Description="Unable to locate or open load module in read only mode." />
<Error Number="C15" SubCode= "28" Type="Chain" Description="An invalid or corrupted program data variable was detected as a LOADMOD module was being loaded." />
<Error Number="C15" SubCode= "39" Type="Chain" Description="When using dynamic load modules, there is insufficient memory available to load the module." />
<Error Number="C16" SubCode= "" Type="Chain" Description="Insufficient memory available to load the Auto Load DIM variables. The Auto Load DIM variables are compiled into a program when the 'DIM ^size' syntax is used explicitly or implicitly in a program." />
<Error Number="C17" SubCode= "" Type="Chain" Description="An invalid or corrupted program data variable was detected as a program module was being loaded." />
<Error Number="C18" SubCode= "" Type="Chain" Description="The data variable translation to reverse the byte order failed. The extended error information give a relative translation data offset to help identify a range where the error occurs." />
<Error Number="C18" SubCode= "30" Type="Chain" Description="Data variable translation failed. An error occurred while processing the program data variables in the UDA." />
<Error Number="D201" SubCode= "" Type="Database" Description="Unable to connect to remote database." />
<Error Number="D201" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D201" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D201" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D201" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D201" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D201" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D201" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D201" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D201" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D201" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D201" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D201" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D201" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D201" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D201" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D201" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D201" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D201" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D201" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D201" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D201" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D201" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D201" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D201" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D201" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D201" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D201" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D201" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D201" SubCode= "1045" Type="Database" Description="Access denied." />
<Error Number="D201" SubCode= "2001" Type="Database" Description="Failed to create a Unix socket." />
<Error Number="D201" SubCode= "2002" Type="Database" Description="Failed to connect to the local MySQL server." />
<Error Number="D201" SubCode= "2003" Type="Database" Description="Failed to connect to the MySQL server." />
<Error Number="D201" SubCode= "2004" Type="Database" Description="Failed to create an IP socket." />
<Error Number="D201" SubCode= "2005" Type="Database" Description="Failed to find the IP address for the hostname." />
<Error Number="D201" SubCode= "2007" Type="Database" Description="A protocol mismatch resulted from attempting to connect to a server with a client library that uses a different protocol version." />
<Error Number="D201" SubCode= "2008" Type="Database" Description="Out of memory." />
<Error Number="D201" SubCode= "2013" Type="Database" Description="If connect_timeout is specified and it took longer than the specified number of seconds to connect to the server or if the server died while executing the initialization command." />
<Error Number="D202" SubCode= "" Type="Database" Description="Error occurred while executing DBSEND. One possible cause of this error is buffer overflow. " />
<Error Number="D202" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D202" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D202" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D202" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D202" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D202" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D202" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D202" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D202" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D202" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D202" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D202" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D202" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D202" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D202" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D202" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D202" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D202" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D202" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D202" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D202" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D202" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D202" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D202" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D202" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D202" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D202" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D202" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D203" SubCode= "" Type="Database" Description="Unable to execute query." />
<Error Number="D203" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D203" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D203" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D203" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D203" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D203" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D203" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D203" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D203" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D203" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D203" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D203" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D203" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D203" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D203" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D203" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D203" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D203" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D203" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D203" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D203" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D203" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D203" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D203" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D203" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D203" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D203" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D203" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D203" SubCode= "2000" Type="Database" Description="An unknown error occurred." />
<Error Number="D203" SubCode= "2006" Type="Database" Description="The MySQL server has gone away." />
<Error Number="D203" SubCode= "2013" Type="Database" Description="The connection to the server was lost during the query." />
<Error Number="D203" SubCode= "2014" Type="Database" Description="Commands were executed in an improper order." />
<Error Number="D204" SubCode= "" Type="Database" Description="Problem occurred while retrieving the next row from the remote database." />
<Error Number="D204" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D204" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D204" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D204" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D204" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D204" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D204" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D204" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D204" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D204" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D204" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D204" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D204" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D204" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D204" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D204" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D204" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D204" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D204" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D204" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D204" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D204" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D204" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D204" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D204" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D204" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D204" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D204" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D205" SubCode= "" Type="Database" Description="An operation is being performed on a DBFILE file object that has not had a successful DBCONNECT performed on it (the DBFILE is still closed)." />
<Error Number="D205" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D205" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D205" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D205" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D205" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D205" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D205" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D205" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D205" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D205" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D205" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D205" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D205" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D205" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D205" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D205" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D205" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D205" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D205" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D205" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D205" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D205" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D205" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D205" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D205" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D205" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D205" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D205" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D207" SubCode= "" Type="Database" Description="Unable to retrieve state of query." />
<Error Number="D207" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D207" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D207" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D207" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D207" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D207" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D207" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D207" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D207" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D207" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D207" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D207" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D207" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D207" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D207" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D207" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D207" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D207" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D207" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D207" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D207" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D207" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D207" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D207" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D207" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D207" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D207" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D207" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D208" SubCode= "" Type="Database" Description="Unable to halt query." />
<Error Number="D208" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D208" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D208" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D208" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D208" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D208" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D208" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D208" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D208" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D208" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D208" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D208" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D208" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D208" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D208" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D208" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D208" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D208" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D208" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D208" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D208" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D208" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D208" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D208" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D208" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D208" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D208" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D208" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D209" SubCode= "" Type="Database" Description="Unable to convert item during DBFETCH. The subcode value is a variable count from one to N for the fetch variable that encountered the conversion problem." />
<Error Number="D209" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D209" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D209" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D209" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D209" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D209" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D209" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D209" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D209" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D209" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D209" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D209" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D209" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D209" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D209" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D209" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D209" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D209" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D209" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D209" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D209" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D209" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D209" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D209" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D209" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D209" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D209" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D209" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D210" SubCode= "" Type="Database" Description="No more memory." />
<Error Number="D210" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D210" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D210" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D210" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D210" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D210" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D210" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D210" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D210" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D210" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D210" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D210" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D210" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D210" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D210" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D210" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D210" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D210" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D210" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D210" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D210" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D210" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D210" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D210" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D210" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D210" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D210" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D210" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D211" SubCode= "" Type="Database" Description="A column type is being used that is not supported by Windows ODBC operations. The valid column types that are supported can be found in the note (8.) description for the DBFETCH instruction." />
<Error Number="D211" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D211" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D211" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D211" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D211" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D211" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D211" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D211" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D211" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D211" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D211" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D211" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D211" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D211" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D211" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D211" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D211" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D211" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D211" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D211" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D211" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D211" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D211" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D211" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D211" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D211" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D211" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D211" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D212" SubCode= "" Type="Database" Description="Error getting the result." />
<Error Number="D212" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D212" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D212" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D212" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D212" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D212" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D212" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D212" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D212" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D212" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D212" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D212" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D212" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D212" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D212" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D212" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D212" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D212" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D212" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D212" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D212" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D212" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D212" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D212" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D212" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D212" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D212" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D212" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D213" SubCode= "" Type="Database" Description="Error on a DBTRANSACTION." />
<Error Number="D213" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D213" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D213" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D213" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D213" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D213" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D213" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D213" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D213" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D213" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D213" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D213" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D213" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D213" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D213" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D213" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D213" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D213" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D213" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D213" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D213" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D213" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D213" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D213" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D213" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D213" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D213" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D213" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D214" SubCode= "" Type="Database" Description="Error on a DBPREPARE." />
<Error Number="D214" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D214" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D214" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D214" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D214" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D214" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D214" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D214" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D214" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D214" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D214" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D214" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D214" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D214" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D214" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D214" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D214" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D214" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D214" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D214" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D214" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D214" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D214" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D214" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D214" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D214" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D214" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D214" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D215" SubCode= "" Type="Database" Description="Problem occurred while retrieving the previous row from the remote database." />
<Error Number="D215" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D215" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D215" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D215" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D215" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D215" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D215" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D215" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D215" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D215" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D215" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D215" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D215" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D215" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D215" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D215" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D215" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D215" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D215" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D215" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D215" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D215" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D215" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D215" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D215" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D215" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D215" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D215" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D216" SubCode= "" Type="Database" Description="Already under a transaction." />
<Error Number="D216" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D216" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D216" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D216" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D216" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D216" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D216" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D216" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D216" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D216" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D216" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D216" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D216" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D216" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D216" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D216" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D216" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D216" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D216" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D216" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D216" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D216" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D216" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D216" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D216" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D216" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D216" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D216" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D217" SubCode= "" Type="Database" Description="No transaction in process." />
<Error Number="D217" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D217" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D217" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D217" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D217" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D217" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D217" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D217" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D217" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D217" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D217" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D217" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D217" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D217" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D217" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D217" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D217" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D217" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D217" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D217" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D217" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D217" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D217" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D217" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D217" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D217" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D217" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D217" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D218" SubCode= "" Type="Database" Description="Error when disconnecting." />
<Error Number="D218" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D218" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D218" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D218" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D218" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D218" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D218" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D218" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D218" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D218" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D218" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D218" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D218" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D218" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D218" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D218" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D218" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D218" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D218" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D218" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D218" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D218" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D218" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D218" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D218" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D218" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D218" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D218" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D220" SubCode= "" Type="Database" Description="No driver entry or dll. " />
<Error Number="D220" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D220" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D220" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D220" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D220" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D220" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D220" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D220" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D220" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D220" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D220" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D220" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D220" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D220" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D220" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D220" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D220" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D220" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D220" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D220" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D220" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D220" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D220" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D220" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D220" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D220" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D220" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D220" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D221" SubCode= "" Type="Database" Description="Bad driver version." />
<Error Number="D221" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D221" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D221" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D221" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D221" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D221" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D221" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D221" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D221" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D221" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D221" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D221" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D221" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D221" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D221" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D221" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D221" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D221" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D221" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D221" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D221" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D221" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D221" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D221" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D221" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D221" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D221" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D221" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D222" SubCode= "" Type="Database" Description="Unsupported statement." />
<Error Number="D222" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D222" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D222" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D222" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D222" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D222" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D222" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D222" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D222" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D222" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D222" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D222" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D222" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D222" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D222" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D222" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D222" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D222" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D222" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D222" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D222" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D222" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D222" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D222" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D222" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D222" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D222" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D222" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D223" SubCode= "" Type="Database" Description="Unable to open a statement." />
<Error Number="D223" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D223" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D223" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D223" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D223" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D223" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D223" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D223" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D223" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D223" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D223" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D223" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D223" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D223" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D223" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D223" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D223" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D223" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D223" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D223" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D223" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D223" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D223" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D223" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D223" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D223" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D223" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D223" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="D224" SubCode= "" Type="Database" Description="Bad cursor type." />
<Error Number="D224" SubCode= "501" Type="Database" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="D224" SubCode= "502" Type="Database" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="D224" SubCode= "503" Type="Database" Description="During a SQLIO operation, access permission denied." />
<Error Number="D224" SubCode= "504" Type="Database" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="D224" SubCode= "505" Type="Database" Description="During a SQLIO operation, the database file is locked." />
<Error Number="D224" SubCode= "506" Type="Database" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="D224" SubCode= "507" Type="Database" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="D224" SubCode= "508" Type="Database" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="D224" SubCode= "509" Type="Database" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="D224" SubCode= "510" Type="Database" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="D224" SubCode= "511" Type="Database" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="D224" SubCode= "512" Type="Database" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="D224" SubCode= "513" Type="Database" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="D224" SubCode= "514" Type="Database" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="D224" SubCode= "515" Type="Database" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="D224" SubCode= "516" Type="Database" Description="During a SQLIO operation, database is empty." />
<Error Number="D224" SubCode= "517" Type="Database" Description="During a SQLIO operation, the database schema changed." />
<Error Number="D224" SubCode= "518" Type="Database" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="D224" SubCode= "519" Type="Database" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="D224" SubCode= "520" Type="Database" Description="During a SQLIO operation, data type mismatch." />
<Error Number="D224" SubCode= "521" Type="Database" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="D224" SubCode= "522" Type="Database" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="D224" SubCode= "523" Type="Database" Description="During a SQLIO operation, authorization denied." />
<Error Number="D224" SubCode= "524" Type="Database" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="D224" SubCode= "525" Type="Database" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="D224" SubCode= "526" Type="Database" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="D224" SubCode= "527" Type="Database" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="D224" SubCode= "528" Type="Database" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="E06" SubCode= "" Type="ANSI" Description="The variable specified in a SCRNRESTORE, STATERESTORE, TRAPRESTORE, or WINRESTORE statement does not contain the exact amount of information required. Also, a TRAPRESTORE must be performed in the same program that performed the TRAPSAVE." />
<Error Number="E06" SubCode= "1" Type="ANSI" Description="TRAPREST - Variable logical length too small." />
<Error Number="E06" SubCode= "2" Type="ANSI" Description="TRAPREST - Variable time stamp invalid for mainline program in use." />
<Error Number="E06" SubCode= "3" Type="ANSI" Description="TRAPREST - Data invalid causing trap identifier sequencing error." />
<Error Number="E06" SubCode= "4" Type="ANSI" Description="TRAPREST - Data invalid for error trap identifier." />
<Error Number="E06" SubCode= "5" Type="ANSI" Description="TRAPREST - Data invalid for function key trap identifier." />
<Error Number="E06" SubCode= "6" Type="ANSI" Description="TRAPREST - Data invalid causing undetermined identifier." />
<Error Number="E06" SubCode= "7" Type="ANSI" Description="TRAPREST - Variable logical length invalid for traps restored." />
<Error Number="E06" SubCode= "10" Type="ANSI" Description="SCRNREST - Variable logical length invalid." />
<Error Number="E06" SubCode= "11" Type="ANSI" Description="STATEREST - Variable logical length invalid." />
<Error Number="E06" SubCode= "12" Type="ANSI" Description="WINREST - Variable logical length invalid." />
<Error Number="F01" SubCode= "" Type="Format" Description="Numeric field content error in numeric operation." />
<Error Number="F02" SubCode= "" Type="Format" Description="The ARRAY index specified was not within the defined range. May also indicate invalid Pointer if it occurs within an I/O list." />
<Error Number="F03" SubCode= "" Type="Format" Description="Array index value out of range." />
<Error Number="F04" SubCode= "" Type="Format" Description="Uninitialized pointer reference." />
<Error Number="F05" SubCode= "" Type="Format" Description="Variable type mismatch in parameterized CALL list. A F05 error can occur when an invalid array pointer type is encountered in a variable list." />
<Error Number="F06" SubCode= "" Type="Format" Description="A PROCEDURE was called with a FILE, IFILE, AFILE, or PFILE and the corresponding receiving xFILE was already open. If a file is passed to a PROCEDURE, the receiving file declaration must be closed at the time of the CALL." />
<Error Number="F07" SubCode= "" Type="Format" Description="The DIM variable logical string size for the user specified translation table in a LOWERCASE/UPPERCASE instruction must be 256." />
<Error Number="F08" SubCode= "" Type="Format" Description="Either the whole digit parameter or the fraction digit parameter is negative for a NFORMAT instruction." />
<Error Number="F09" SubCode= "" Type="Format" Description="An invalid destination variable has been detected for an IMPLODE or EXPLODE statement. This error occurs when the source variable in an EXPLODE operation is the same as a dest variable. Also, this error occurs in an EXPLODE statement if an object is in the destination list and the delimiter parameter is null. In an IMPLODE statement, this error occurs if an invalid object is detected in the source list." />
<Error Number="F11" SubCode= "" Type="Format" Description="The MODE value for a HASH instruction is invalid. The acceptable values must be zero (0) to four (3) or one hundred (100) to one hundred four (104)." />
<Error Number="F12" SubCode= "" Type="Format" Description="A LABEL execution pointer is referencing an EXTERNAL load module declaration and it is being used in a flow control instruction that does not support an EXTERNAL instruction. For example, a GOTO instruction does not support an EXTERNAL reference." />
<Error Number="F13" SubCode= "" Type="Format" Description="A FINDDIR instruction was unable to create a DMAKE buffer for for a destination DIM pointer." />
<Error Number="F14" SubCode= "" Type="Format" Description="Invalid UTF-8 characters are being moved or stored into a NCHAR or NINIT variable. The NCHAR and NINIT variable can only contain valid UTF-8 characters." />
<Error Number="F15" SubCode= "" Type="Format" Description="Unable to uppercase a UTF-8 string." />
<Error Number="F16" SubCode= "" Type="Format" Description="NCHAR and DIM variable types are not allowed for the PL/B instruction." />
<Error Number="F17" SubCode= "" Type="Format" Description="Out for memory to perform format operation." />
<Error Number="S01" SubCode= "" Type="Spool" Description="Requested file/device unavailable. Occurs only in spool traps, otherwise spool waits until the file/device is released. The file/device is already locked (in use) by another process." />
<Error Number="S05" SubCode= "" Type="Spool" Description="PRINT operation attempted on an unopened file." />
<Error Number="S07" SubCode= "" Type="Spool" Description="PRINT operation did not write out the requested number of characters. Possible file space full or hardware malfunction." />
<Error Number="S06" SubCode= "" Type="Spool" Description="File space full writing to spool file." />
<Error Number="S09" SubCode= "" Type="Spool" Description="Error closing spool file." />
<Error Number="S10" SubCode= "" Type="Spool" Description="Specified file/device could not be opened/created or a prtopen dialog box was canceled. Insufficient access privileges to the file/device or ead-only file/device." />
<Error Number="S11" SubCode= "" Type="Spool" Description="Spool file name is null." />
<Error Number="S12" SubCode= "" Type="Spool" Description="Internal closing error (system error)." />
<Error Number="S13" SubCode= "" Type="Spool" Description="Unable to allocate necessary spool file buffer." />
<Error Number="S14" SubCode= "" Type="Spool" Description="Spool device not available at time of PRINT." />
<Error Number="S15" SubCode= "" Type="Spool" Description="Spool device became not available during a PRINT operation." />
<Error Number="S16" SubCode= "" Type="Spool" Description="Invalid PFILE declaration for PRTPAGE instruction." />
<Error Number="S17" SubCode= "" Type="Spool" Description="Invalid font specified for PRTPAGE instruction." />
<Error Number="S17" SubCode= "21" Type="Spool" Description="Unable to allocate memory." />
<Error Number="S17" SubCode= "22" Type="Spool" Description="Unable to locate font or font not valid for requested device." />
<Error Number="S17" SubCode= "23" Type="Spool" Description="Unable to create working font." />
<Error Number="S17" SubCode= "24" Type="Spool" Description="Font in single quotes not terminated." />
<Error Number="S17" SubCode= "25" Type="Spool" Description="Font name not valid internal name or does not start with '>' character." />
<Error Number="S17" SubCode= "26" Type="Spool" Description="Invalid options in parenthesis." />
<Error Number="S17" SubCode= "27" Type="Spool" Description="Invalid options string not terminated properly." />
<Error Number="S17" SubCode= "28" Type="Spool" Description="Invalid options string not terminated properly." />
<Error Number="S17" SubCode= "29" Type="Spool" Description="Invalid font name extra data at end of name." />
<Error Number="S17" SubCode= "300" Type="Spool" Description=" When generating a PDF file local to the PLBSERVE application, the server runtime could not retrieve font information from a PLBCLIENT FONT object because the PLBCLIENT version is older than 9.6A." />
<Error Number="S18" SubCode= "" Type="Spool" Description="Unable to print picture for PRTPAGE instruction. Normal cause would be insufficient memory." />
<Error Number="S19" SubCode= "" Type="Spool" Description="PRINT statement used a *{tab} where the {tab} value is less than 1 or greater than 512." />
<Error Number="S20" SubCode= "" Type="Spool" Description="Spool File could not be locked for exclusive use." />
<Error Number="S21" SubCode= "" Type="Spool" Description="An invalid file name was encountered." />
<Error Number="S22" SubCode= "" Type="Spool" Description="Standard spool file open or prep dialog was canceled." />
<Error Number="S23" SubCode= "" Type="Spool" Description="Invalid options specified for SPLOPEN instruction." />
<Error Number="S24" SubCode= "" Type="Spool" Description="Error writing advanced print spool file." />
<Error Number="S25" SubCode= "" Type="Spool" Description="Error reading advanced print spool file." />
<Error Number="S26" SubCode= "" Type="Spool" Description="Invalid advanced print spool file." />
<Error Number="S26" SubCode= "101" Type="Spool" Description="An invalid print control command was encountered while processing a PRTPLAY spool file. The spool file has been corrupted." />
<Error Number="S26" SubCode= "102" Type="Spool" Description="Invalid PRTPLAY spool file identifier was detected. Either the file was not generated as a PRTOPEN spool file or it has been corrupted." />
<Error Number="S26" SubCode= "103" Type="Spool" Description="The PRTPLAY spool file version is invalid. This error would occur if an older runtime accessed a spool file generated by a newer runtime." />
<Error Number="S26" SubCode= "104" Type="Spool" Description="The PRTPLAY spool file is in an incomplete state. A PRTOPEN spool file was created and started but the spooling operation was not completed properly. This could occur if a program was terminated prematurely while generating a spool file." />
<Error Number="S27" SubCode= "" Type="Spool" Description="Out of memory creating print image." />
<Error Number="S28" SubCode= "" Type="Spool" Description="Unable to create print preview window." />
<Error Number="S29" SubCode= "" Type="Spool" Description="Windows device invalid for PLBSERVE. This indicates that you cannot print to a Windows printer on the server side." />
<Error Number="S30" SubCode= "" Type="Spool" Description="An error has occurred processing a PDF file." />
<Error Number="S30" SubCode= "101" Type="Spool" Description="An '*ATTACH' syntax error has occurred. Check the fields being used the '*ATTACH' data string." />
<Error Number="S30" SubCode= "102" Type="Spool" Description=" An '*INFO' syntax error has occurred. Check the fields being used in the '*INFO' data string." />
<Error Number="S30" SubCode= "103" Type="Spool" Description="An '*ENCRYPT' syntax error has occurred. Check the fields being used in the '*ENCRYPT' data string." />
<Error Number="S30" SubCode= "104" Type="Spool" Description="An internal syntax error has occurred. An invalid PDF print control has been encountered. The only supported PDF print controls are *ATTACH, *ENCRYPT, and *INFO." />
<Error Number="S30" SubCode= "105" Type="Spool" Description="A processing error has been encountered for the *ATTACH PDF print control. The specified attachment file to be put into a PDF can not be found." />
<Error Number="S30" SubCode= "106" Type="Spool" Description="A processing error has been encountered for the *INFO PDF print control. The user information could not be added to a PDF file." />
<Error Number="S30" SubCode= "107" Type="Spool" Description="A processing error has been encountered for the *ENCRYPT PDF print control. An error occurred when attempting to encrypt the PDF file. Make sure that the *ENCRYPT PDF control is executed before any data is output to a PDF file." />
<Error Number="S30" SubCode= "110" Type="Spool" Description="Template control string error has occurred." />
<Error Number="S30" SubCode= "111" Type="Spool" Description="An error has occurred opening or reading the PDF file specified by the *Template control 'F' parameter. Also, this subcode occurs if an unsupported PDF object or format is encountered processing the PDF template file data." />
<Error Number="S31" SubCode= "" Type="Spool" Description="An error has occurred processing the PRTPAGE *PICT control to directly embed JPG image data directly into the Sunbelt PDF 'pdf:' file." />
<Error Number="S31" SubCode= "101" Type="Spool" Description=" Invalid image file name. Null name not allowed." />
<Error Number="S31" SubCode= "102" Type="Spool" Description="Invalid image file name. Length of path and name too long." />
<Error Number="S31" SubCode= "103" Type="Spool" Description=" Invalid image file name! Blank name not allowed." />
<Error Number="S31" SubCode= "104" Type="Spool" Description="Unable open image file name." />
<Error Number="S31" SubCode= "105" Type="Spool" Description="Invalid *PICT Image file size." />
<Error Number="S31" SubCode= "106" Type="Spool" Description=" Unable to read all of the *PICT Image data." />
<Error Number="S31" SubCode= "107" Type="Spool" Description="Unable to allocate memory for image buffer." />
<Error Number="S31" SubCode= "108" Type="Spool" Description="Invalid image type." />
<Error Number="S31" SubCode= "109" Type="Spool" Description="Unable to print image." />
<Error Number="O101" SubCode= "" Type="Object" Description="Requested resource not found during CREATE of an object. Resource DLL cannot be open in two (2) programs at the same time." />
<Error Number="O102" SubCode= "" Type="Object" Description="Requested PICT or MOVIE file not found during CREATE of an object." />
<Error Number="O103" SubCode= "" Type="Object" Description="Windows system error during CREATE of an object. Possible causes of this error could be the lack of available memory, the lack of system resources to allow creation of the object, improper data in variable for CREATE or points to a DLL that does not exist. If the error was on a CREATE DIALOG instruction, an additional subcode is provided in the form of 'nnmm' where nn is the dialog item being processed and mm is the actual error." />
<Error Number="O103" SubCode= "1" Type="Object" Description="During a CREATE DIALOG instruction, an equal sign or colon was expected but not found." />
<Error Number="O103" SubCode= "2" Type="Object" Description="During a CREATE DIALOG instruction, a single quote' was missing on a name." />
<Error Number="O103" SubCode= "3" Type="Object" Description="During a CREATE DIALOG instruction, out of memory." />
<Error Number="O103" SubCode= "4" Type="Object" Description="During a CREATE DIALOG instruction, a position t:b:l:r was malformed." />
<Error Number="O103" SubCode= "5" Type="Object" Description="During a CREATE DIALOG instruction, the dialog type was not MODAL, MODELESS, or PROGRESS." />
<Error Number="O103" SubCode= "6" Type="Object" Description="During a CREATE DIALOG instruction, the dialog POS or ABSPOS values were malformed." />
<Error Number="O103" SubCode= "7" Type="Object" Description="During a CREATE DIALOG instruction, an undefined Dialog string operation encountered." />
<Error Number="O103" SubCode= "8" Type="Object" Description="During a CREATE DIALOG instruction, unable to load an ICON." />
<Error Number="O103" SubCode= "9" Type="Object" Description="During a CREATE DIALOG instruction, too many items in Dialog." />
<Error Number="O103" SubCode= "10" Type="Object" Description="During a CREATE instruction, a comma separator is missing." />
<Error Number="O103" SubCode= "100" Type="Object" Description="During a CREATE instruction, a PLB FORM value is too large for a .NET data variable." />
<Error Number="O103" SubCode= "101" Type="Object" Description="During a CREATE instruction, a PLB FORM negative value is invalid for the .NET data type." />
<Error Number="O104" SubCode= "" Type="Object" Description="The screen dimensions are too small to allow an object to be created." />
<Error Number="O105" SubCode= "" Type="Object" Description="A CREATE instruction must be executed for an object before an ACTIVATE instruction may be used or the object is specified." />
<Error Number="O106" SubCode= "" Type="Object" Description="Insufficient memory is available to perform operation." />
<Error Number="O107" SubCode= "" Type="Object" Description="A dialog number not associated with a POPUPMENU or a DATALIST dialog item was specified for a DELETITEM instruction." />
<Error Number="O108" SubCode= "" Type="Object" Description="Invalid font specified." />
<Error Number="O108" SubCode= "21" Type="Object" Description="Unable to allocate memory." />
<Error Number="O108" SubCode= "22" Type="Object" Description="Unable to locate font or font not valid for requested device." />
<Error Number="O108" SubCode= "23" Type="Object" Description="Unable to create working font." />
<Error Number="O108" SubCode= "24" Type="Object" Description="Font in single quotes not terminated." />
<Error Number="O108" SubCode= "25" Type="Object" Description="Font name not valid internal name or does not start with '>' character." />
<Error Number="O108" SubCode= "26" Type="Object" Description="Invalid options in parenthesis." />
<Error Number="O108" SubCode= "27" Type="Object" Description="Invalid options string not terminated properly." />
<Error Number="O108" SubCode= "28" Type="Object" Description="Invalid options string not terminated properly." />
<Error Number="O108" SubCode= "29" Type="Object" Description="Invalid font name extra data at end of name." />
<Error Number="O109" SubCode= "" Type="Object" Description="Too many MODAL dialogs have been activated at the same time. Only ten MODAL dialogs may be activated in a nested manner." />
<Error Number="O110" SubCode= "" Type="Object" Description="Deactivation of nested MODAL dialog is not being performed in reverse order to activation order. When MODAL dialogs are activated in a nested manner, they must be deactivated in the reverse order of activation." />
<Error Number="O111" SubCode= "" Type="Object" Description="WINAPI error where the function specified in the PROFILE declaration could not be found. Make sure the spelling of the API function name is correct. If the name appears to be correct, the cause may be that the function is a UNICODE enabled function that requires that the API function name has a character 'A' or 'W' appended to it. A UNICODE enabled function may be determined when a parameter of the API function is a string variable. The 'A' character indicates that the string parameters contain ASCIIZ data. The 'W' indicates that the string parameters contain UNICODE string data." />
<Error Number="O112" SubCode= "" Type="Object" Description="WINAPI error where an invalid parameter was passed in for the function specified in the PROFILE declaration. Verify that the variable type specified in the PROFILE declaration is consistent with the required parameters of the API function." />
<Error Number="O113" SubCode= "" Type="Object" Description="WINAPI error where an invalid result variable was assigned for the function specified in the PROFILE declaration. Verify that the variable type specified in the PROFILE declaration is consistent with the return variable of the API function." />
<Error Number="O114" SubCode= "" Type="Object" Description="WINAPI error where the DLL module name specified in the PROFILE declaration was not loaded or is invalid. " />
<Error Number="O115" SubCode= "" Type="Object" Description="Invalid tab stop value in a DATALIST object." />
<Error Number="O116" SubCode= "" Type="Object" Description="The DATALIST is full." />
<Error Number="O117" SubCode= "" Type="Object" Description="The COMBOBOX is full." />
<Error Number="O118" SubCode= "" Type="Object" Description="A MODELESS dialog cannot be activated on top of a MODAL dialog." />
<Error Number="O119" SubCode= "" Type="Object" Description="The FORMLOAD operation failed." />
<Error Number="O119" SubCode= "20" Type="Object" Description="During a FORMLOAD, invalid form creation data for window object was encountered." />
<Error Number="O119" SubCode= "21" Type="Object" Description="During a FORMLOAD, an invalid form window object was encountered." />
<Error Number="O119" SubCode= "22" Type="Object" Description="During a FORMLOAD, unable to identify a form object." />
<Error Number="O119" SubCode= "23" Type="Object" Description="During a FORMLOAD, invalid form creation data was encountered for an object." />
<Error Number="O119" SubCode= "24" Type="Object" Description="During a FORMLOAD, an invalid object type found for a form." />
<Error Number="O119" SubCode= "26" Type="Object" Description="During a FORMLOAD, an invalid form internal data variable was encountered." />
<Error Number="O119" SubCode= "27" Type="Object" Description="During a FORMLOAD, an invalid form internal data variable was encountered." />
<Error Number="O119" SubCode= "28" Type="Object" Description="During a FORMLOAD, an invalid form internal data variable was encountered." />
<Error Number="O119" SubCode= "29" Type="Object" Description="During a FORMLOAD, an invalid form internal data variable was encountered." />
<Error Number="O119" SubCode= "30" Type="Object" Description="During a FORMLOAD, an invalid form internal data variable was encountered." />
<Error Number="O119" SubCode= "31" Type="Object" Description="During a FORMLOAD, unable to locate form register event code description data." />
<Error Number="O119" SubCode= "32" Type="Object" Description="During a FORMLOAD, unable to read form register event code description data." />
<Error Number="O119" SubCode= "33" Type="Object" Description="During a FORMLOAD, unable to locate form register event name data." />
<Error Number="O119" SubCode= "34" Type="Object" Description="During a FORMLOAD, unable to read form register event name data." />
<Error Number="O119" SubCode= "35" Type="Object" Description="During a FORMLOAD, unable to read form resource id count data." />
<Error Number="O119" SubCode= "36" Type="Object" Description="During a FORMLOAD, unable to locate form header data." />
<Error Number="O119" SubCode= "37" Type="Object" Description="During a FORMLOAD, unable to read form header data." />
<Error Number="O119" SubCode= "38" Type="Object" Description="During a FORMLOAD, unable to locate form data." />
<Error Number="O119" SubCode= "39" Type="Object" Description="During a FORMLOAD, unable to read form data." />
<Error Number="O119" SubCode= "40" Type="Object" Description="During a FORMLOAD, invalid form identification string." />
<Error Number="O119" SubCode= "41" Type="Object" Description="During a FORMLOAD, invalid form version found." />
<Error Number="O119" SubCode= "42" Type="Object" Description="During a FORMLOAD, invalid form completion flag." />
<Error Number="O119" SubCode= "43" Type="Object" Description="During a FORMLOAD, unable to locate form name data." />
<Error Number="O119" SubCode= "44" Type="Object" Description="During a FORMLOAD, unable to read form name data." />
<Error Number="O119" SubCode= "45" Type="Object" Description="During a FORMLOAD, unable to read form startup data." />
<Error Number="O119" SubCode= "46" Type="Object" Description="During a FORMLOAD, the form must be an objects-only form." />
<Error Number="O120" SubCode= "" Type="Object" Description="Too many items in COLLECTION." />
<Error Number="O121" SubCode= "" Type="Object" Description="A WINDOW object specified for the PARENTWIN property has not been created." />
<Error Number="O122" SubCode= "" Type="Object" Description="Operation being performed that is not supported for PLBCE runtime." />
<Error Number="O123" SubCode= "" Type="Object" Description="Specified property does not exist for object." />
<Error Number="O124" SubCode= "" Type="Object" Description="Too many parameters have been specified for an object method or a WINAPI instruction. For the WINAPI instruction, any API function parameter type requiring an INT8 PLB data type counts as two (2) parameters toward the maximum of twenty (20) parameters supported." />
<Error Number="O125" SubCode= "" Type="Object" Description="There is a problem with a method name, with one of the parameter names, or parameter names are not allowed at all." />
<Error Number="O126" SubCode= "" Type="Object" Description="Invalid parameter type specified for a method." />
<Error Number="O127" SubCode= "" Type="Object" Description="Invalid parameter type specified for a method." />
<Error Number="O128" SubCode= "" Type="Object" Description="Required parameter is missing from method parameter list." />
<Error Number="O129" SubCode= "" Type="Object" Description="Duplicate method parameter specified." />
<Error Number="O130" SubCode= "" Type="Object" Description="Invalid parameter name specified." />
<Error Number="O131" SubCode= "" Type="Object" Description="More than 200 string properties (*property={value})are being used for one CREATE statement." />
<Error Number="O132" SubCode= "" Type="Object" Description="Unable to convert VARIANT data type to PLB data type variable." />
<Error Number="O133" SubCode= "" Type="Object" Description="Invalid variant type specified for VARIANT object create. This error can also occur when a SETPROP of the VARTYPE property for a VARIANT object specifies a $VT_ARRAY value." />
<Error Number="O134" SubCode= "" Type="Object" Description="The window specified as a parent window is invalid when using the PARENTWIN property. The window operand for the PARENTWIN property cannot have a window type of MODAL or MODELESS." />
<Error Number="O135" SubCode= "" Type="Object" Description="Invalid argument requested for an EVENTINFO or EVENTREG." />
<Error Number="O136" SubCode= "" Type="Object" Description="No more than ten (10) nested collection name references are allowed for an OLE object." />
<Error Number="O137" SubCode= "" Type="Object" Description="No more than one hundred (100) collection index reference strings are allowed for an OLE object." />
<Error Number="O138" SubCode= "" Type="Object" Description="Null collection name reference is invalid for an OLE object." />
<Error Number="O139" SubCode= "" Type="Object" Description="Method does not exist for AUTOMATION interface." />
<Error Number="O140" SubCode= "" Type="Object" Description="Collection name reference does not exist for an OLE object." />
<Error Number="O141" SubCode= "" Type="Object" Description="Unable to invoke a method for an OLE object. Additional error data is not available. Possible causes could be an indeterminate number of reasons." />
<Error Number="O142" SubCode= "" Type="Object" Description="Collection index reference is invalid for OLE object." />
<Error Number="O143" SubCode= "" Type="Object" Description="The number of parameters is different from the number of arguments accepted by the method or property." />
<Error Number="O144" SubCode= "" Type="Object" Description="One of the parameters is not a valid variant type." />
<Error Number="O145" SubCode= "" Type="Object" Description="The OLE application has caused an exception error. Information concerning the exception error may be available by using the GETINFO EXCEPTION statement." />
<Error Number="O146" SubCode= "" Type="Object" Description="The specified member (method/property) does not exist or the operation tried to set the value of a read-only property." />
<Error Number="O147" SubCode= "" Type="Object" Description="This implementation of the IDispatch interface does not support named arguments." />
<Error Number="O148" SubCode= "" Type="Object" Description="One of the arguments could not be coerced to the required type." />
<Error Number="O149" SubCode= "" Type="Object" Description="One of the parameter DISPIDs being specified is invalid for the method. An 'ARG:' extended error data should indicate the first argument that contains the error. The 'ARG:' extended data is either presented in the error dialog or appended to the error variable for a TRAP operation." />
<Error Number="O150" SubCode= "" Type="Object" Description="One or more of the arguments contained invalid data type that could not be coerced into the required type format. The index within the argument list of the first parameter with the incorrect type is supplied as 'ARG:' extended data. The 'ARG:' extended data is either presented in the error dialog or appended to the error variable for a TRAP operation." />
<Error Number="O151" SubCode= "" Type="Object" Description="The member being invoked interprets string arguments according to the LCID, and the LCID is not recognized. If the LCID is not needed to interpret arguments, this error should not occur. LCID refers to 'Locale Identifier'. This specifies language requirements to member operations." />
<Error Number="O152" SubCode= "" Type="Object" Description="A required parameter was omitted." />
<Error Number="O153" SubCode= "" Type="Object" Description="An OLE object can not be created." />
<Error Number="O153" SubCode= "100" Type="Object" Description="Runtime does NOT support OLE" />
<Error Number="O153" SubCode= "101" Type="Object" Description="Unable to establish storage id because more than 300 OLE objects have been created." />
<Error Number="O153" SubCode= "102" Type="Object" Description="Unable to establish OLE form setup requirements." />
<Error Number="O153" SubCode= "103" Type="Object" Description="Unable to create OLE container object because of invalid class or required interfaces are not available." />
<Error Number="O153" SubCode= "104" Type="Object" Description="Unable to create OLE control object because of invalid class or required interfaces are not available. The Windows Extended error code is provided when it is available to be reported. In this case, the WINERR value in an extended OLE error that can help to identify the cause of the error." />
<Error Number="O155" SubCode= "110" Type="Object" Description="CLASSID was not specified." />
<Error Number="O155" SubCode= "" Type="Object" Description="ADMIN operation failed." />
<Error Number="O155" SubCode= "1" Type="Object" Description="During ADMIN operation, failed to start socket." />
<Error Number="O155" SubCode= "2" Type="Object" Description="During ADMIN operation, bad IP number." />
<Error Number="O155" SubCode= "3" Type="Object" Description="During ADMIN operation, out of memory." />
<Error Number="O155" SubCode= "4" Type="Object" Description="During ADMIN operation, socket creation failed." />
<Error Number="O155" SubCode= "5" Type="Object" Description="During ADMIN operation, socket bind failed." />
<Error Number="O155" SubCode= "6" Type="Object" Description="During ADMIN operation, ADMIN not found." />
<Error Number="O155" SubCode= "7" Type="Object" Description="During ADMIN operation, bad version." />
<Error Number="O155" SubCode= "8" Type="Object" Description="During ADMIN operation, unknown version." />
<Error Number="O155" SubCode= "9" Type="Object" Description="During ADMIN operation, connection lost." />
<Error Number="O155" SubCode= "10" Type="Object" Description="During ADMIN operation, socket error." />
<Error Number="O155" SubCode= "11" Type="Object" Description="During ADMIN operation, encrypt startup." />
<Error Number="O158" SubCode= "" Type="Object" Description="An IMAGELIST is being used as a property {value} before it has been created." />
<Error Number="O159" SubCode= "" Type="Object" Description="An invalid data variable type has been encountered for a GETPROP or SETPROP property {value}." />
<Error Number="O160" SubCode= "" Type="Object" Description="The source and destination GUI Object variables in a MOVE object to object operation do not have the same object types." />
<Error Number="O161" SubCode= "" Type="Object" Description="A SUBMENU was activated and the parent {menu} object has not been created or set." />
<Error Number="O162" SubCode= "" Type="Object" Description="An invalid GUI object was used in a PL/B instruction." />
<Error Number="O163" SubCode= "" Type="Object" Description="Unable to convert VARIANT data type to PLB data type variable because the VARIANT contains a VT_NULL variant type." />
<Error Number="O164" SubCode= "" Type="Object" Description="Invalid event specified for a NETOBJECT or NETCONTROL." />
<Error Number="O165" SubCode= "" Type="Object" Description="Unable to convert a .NET data type for the operation." />
<Error Number="O166" SubCode= "" Type="Object" Description="The client version does not support the STREAM instruction." />
<Error Number="O167" SubCode= "" Type="Object" Description="OMODULE method error encountered." />
<Error Number="O199" SubCode= "" Type="Object" Description="A GPF error has occurred in a Windows OS function while executing a PL/B method." />
<Error Number="I01" SubCode= "" Type="I/O" Description="OS error occurred while locking the data file. This error should not occur unless the OS is failing." />
<Error Number="I02" SubCode= "" Type="I/O" Description="Unable to re-open file." />
<Error Number="I03" SubCode= "" Type="I/O" Description="Unable to access the file specified by the OPEN operation. File does not exist or is not located within a Logged On Drive or search path. File is already open in EXCLUSIVE mode by another program/process." />
<Error Number="I03" SubCode= "501" Type="I/O" Description="During a SQLIO operation, SQL error or missing database." />
<Error Number="I03" SubCode= "502" Type="I/O" Description="During a SQLIO operation, internal logic error in SQLite." />
<Error Number="I03" SubCode= "503" Type="I/O" Description="During a SQLIO operation, access permission denied." />
<Error Number="I03" SubCode= "504" Type="I/O" Description="During a SQLIO operation, callback routine requested an abort." />
<Error Number="I03" SubCode= "505" Type="I/O" Description="During a SQLIO operation, the database file is locked." />
<Error Number="I03" SubCode= "506" Type="I/O" Description="During a SQLIO operation, a table in the database is locked." />
<Error Number="I03" SubCode= "507" Type="I/O" Description="During a SQLIO operation, a malloc() failed." />
<Error Number="I03" SubCode= "508" Type="I/O" Description="During a SQLIO operation, attempt to write a readonly database." />
<Error Number="I03" SubCode= "509" Type="I/O" Description="During a SQLIO operation, operation terminated by sqlite3_interrupt()." />
<Error Number="I03" SubCode= "510" Type="I/O" Description="During a SQLIO operation, some kind of disk I/O error occurred." />
<Error Number="I03" SubCode= "511" Type="I/O" Description="During a SQLIO operation, the database disk image is malformed." />
<Error Number="I03" SubCode= "512" Type="I/O" Description="During a SQLIO operation, unknown opcode in sqlite3_file_control()." />
<Error Number="I03" SubCode= "513" Type="I/O" Description="During a SQLIO operation, insertion failed because database is full." />
<Error Number="I03" SubCode= "514" Type="I/O" Description="During a SQLIO operation, unable to open the database file." />
<Error Number="I03" SubCode= "515" Type="I/O" Description="During a SQLIO operation, database lock protocol error." />
<Error Number="I03" SubCode= "516" Type="I/O" Description="During a SQLIO operation, database is empty." />
<Error Number="I03" SubCode= "517" Type="I/O" Description="During a SQLIO operation, the database schema changed." />
<Error Number="I03" SubCode= "518" Type="I/O" Description="During a SQLIO operation, string or BLOB exceeds size limit." />
<Error Number="I03" SubCode= "519" Type="I/O" Description="During a SQLIO operation, abort due to constraint violation." />
<Error Number="I03" SubCode= "520" Type="I/O" Description="During a SQLIO operation, data type mismatch." />
<Error Number="I03" SubCode= "521" Type="I/O" Description="During a SQLIO operation, library used incorrectly." />
<Error Number="I03" SubCode= "522" Type="I/O" Description="During a SQLIO operation, uses OS features not supported on host." />
<Error Number="I03" SubCode= "523" Type="I/O" Description="During a SQLIO operation, authorization denied." />
<Error Number="I03" SubCode= "524" Type="I/O" Description="During a SQLIO operation, auxiliary database format error." />
<Error Number="I03" SubCode= "525" Type="I/O" Description="During a SQLIO operation, second parameter to sqlite3_bind out of range." />
<Error Number="I03" SubCode= "526" Type="I/O" Description="During a SQLIO operation, file opened that is not a database file." />
<Error Number="I03" SubCode= "527" Type="I/O" Description="During a SQLIO operation, notifications from sqlite3_log()." />
<Error Number="I03" SubCode= "528" Type="I/O" Description="During a SQLIO operation, warnings from sqlite3_log()." />
<Error Number="I04" SubCode= "" Type="I/O" Description="Unable to access the ISAM file specified by the OPEN instruction. See 'I03' error above." />
<Error Number="I05" SubCode= "" Type="I/O" Description="I/O operation attempted on an unopened file." />
<Error Number="I06" SubCode= "" Type="I/O" Description="Insufficient file handles available to PREP/OPEN specified file." />
<Error Number="I07" SubCode= "" Type="I/O" Description="The path and filename size is too large to be placed into an AAM or ISI header during a PREPARE instruction." />
<Error Number="I07" SubCode= "20" Type="I/O" Description="During a PREPARE instruction, the text file name without a path is larger than 47 characters." />
<Error Number="I07" SubCode= "21" Type="I/O" Description="During a PREPARE instruction, ext file name that may or may not include pathing information is larger than 47 characters that is too large to be placed into an AAM or ISI header. If pathing information is included, the user may want to use a NOPATH keyword on an AFILE/IFILE declaration to prevent the path information from being placed into an AAM or ISI header." />
<Error Number="I08" SubCode= "" Type="I/O" Description="Insufficient access rights or disk resources. During PREP, insufficient write or create privileges for the directory. During I/O, insufficient write privileges for the file/directory or file space full. Also, this error can occur when the OS IO (network/file) is unstable resulting in unknown/unexpected OS errors. For this error, the user should note/report any additional information which includes error subcodes and/or OS Error codes like WINERR for the Windows OS. " />
<Error Number="I09" SubCode= "" Type="I/O" Description="Unable to locate the file referenced by the CLOSE operation. Occurs if a file was deleted between the OPEN and CLOSE operations." />
<Error Number="I10" SubCode= "" Type="I/O" Description="Unable to PREP/OPEN the requested file. Insufficient memory available for requested file buffer size. Insufficient rights/privileges (write access) to the directory or file space full. Attempt to OPEN a read only file in SHARE/EXCLUSIVE mode." />
<Error Number="I11" SubCode= "" Type="I/O" Description="Invalid file specification." />
<Error Number="I11" SubCode= "96" Type="I/O" Description="The OPEN operation for an IFILE is using the same file name for the ISI and TXT files." />
<Error Number="I11" SubCode= "97" Type="I/O" Description="The PREPARE operation for an IFILE is using the same file name for the ISI and TXT files." />
<Error Number="I11" SubCode= "98" Type="I/O" Description="The OPEN operation for an AFILE is using the same file name for the AAM and TXT files." />
<Error Number="I11" SubCode= "99" Type="I/O" Description="The PREPARE operation for an AFILE is using the same file name for the AAM and TXT files." />
<Error Number="I11" SubCode= "196" Type="I/O" Description="The Windows OS data was unreliable when checking for same files while performing a OPEN operation for an IFILE. Consider using the PLBWIN_QNAME runtime keyword." />
<Error Number="I11" SubCode= "197" Type="I/O" Description="The Windows OS data was unreliable when checking for same files while performing a PREPARE operation for an IFILE. Consider using the PLBWIN_QNAME runtime keyword." />
<Error Number="I11" SubCode= "198" Type="I/O" Description="The Windows OS data was unreliable when checking for same files while performing a OPEN operation for an AFILE. Consider using the PLBWIN_QNAME runtime keyword." />
<Error Number="I11" SubCode= "199" Type="I/O" Description="The Windows OS data was unreliable when checking for same files while performing a PREPARE operation for an AFILE. Consider using the PLBWIN_QNAME runtime keyword." />
<Error Number="I12" SubCode= "" Type="I/O" Description="Invalid sector number in WRITAB instruction. Either beyond End Of File or negative access number less than -4." />
<Error Number="I13" SubCode= "" Type="I/O" Description="Invalid record length for a PREP instruction. The record length is zero or greater than the maximum allowed record size. This error can also occur if a file variable BUFFER/FIXED/VAR keyword value is greater than the maximum allowed record size. The maximum allowed record size can not exceed 65533." />
<Error Number="I13" SubCode= "20" Type="I/O" Description="During a PREPARE instruction, the file variable BUFFER keyword size is too large." />
<Error Number="I13" SubCode= "21" Type="I/O" Description="During a PREPARE instruction, the file variable FIXED keyword size is too large." />
<Error Number="I13" SubCode= "22" Type="I/O" Description="During a PREPARE instruction, the file variable VAR keyword size is too large." />
<Error Number="I13" SubCode= "23" Type="I/O" Description="During a PREPARE instruction, the record size specified for an IFILE PREP is invalid." />
<Error Number="I13" SubCode= "24" Type="I/O" Description="During a PREPARE instruction, the ecord size specified for an AFILE PREP is invalid." />
<Error Number="I14" SubCode= "" Type="I/O" Description="The key length is either zero, greater than the maximum, or greater than record length." />
<Error Number="I14" SubCode= "21" Type="I/O" Description="No key specifications defined." />
<Error Number="I14" SubCode= "22" Type="I/O" Description="Invalid key syntax." />
<Error Number="I14" SubCode= "23" Type="I/O" Description="Invalid key specification entry values." />
<Error Number="I14" SubCode= "24" Type="I/O" Description="Keys overlap." />
<Error Number="I14" SubCode= "25" Type="I/O" Description="Too many key specifications used." />
<Error Number="I14" SubCode= "26" Type="I/O" Description="Invalid primary option syntax." />
<Error Number="I14" SubCode= "27" Type="I/O" Description="Invalid primary entry values." />
<Error Number="I14" SubCode= "28" Type="I/O" Description="Too many 'P' options." />
<Error Number="I15" SubCode= "" Type="I/O" Description="Obsolete file format. SUNINDEX or SUNAAMDX the file with the correct version of the utility." />
<Error Number="I16" SubCode= "" Type="I/O" Description="A NULL key is invalid for an ISAM WRITE/INSERT operation. This error can also occur for an Isam WRITE/INSERT operation when no key is specified and the IFILE being used does not have key location specifications identified." />
<Error Number="I17" SubCode= "" Type="I/O" Description="Key used in ISAM operation is longer than allowed for file." />
<Error Number="I18" SubCode= "" Type="I/O" Description="Invalid method variable in FILEIO operation." />
<Error Number="I19" SubCode= "" Type="I/O" Description="Invalid OPEN or PREP mode value," />
<Error Number="I19" SubCode= "30" Type="I/O" Description="The EOR type specified by the MODE={value} bitmap value indicates an end of record type that is not the same as the end of record that was found in the AFILE/IFILE/FILE text file being accessed." />
<Error Number="I19" SubCode= "31" Type="I/O" Description="The MODE={value} bitmap value contains an undefined open mode definition." />
<Error Number="I19" SubCode= "32" Type="I/O" Description="The MODE={value} bitmap value contains an undefined EOR type definition. This error occurs when more than one EOR type is specified by the value." />
<Error Number="I20" SubCode= "" Type="I/O" Description="A Windows runtime attempted to open a Unix index file or a Unix runtime attempted to open a Windows index file." />
<Error Number="I21" SubCode= "" Type="I/O" Description="Attempt to tab across the sector boundary." />
<Error Number="I22" SubCode= "" Type="I/O" Description="Standard file open or prep dialog was canceled." />
<Error Number="I23" SubCode= "" Type="I/O" Description="FILELIST error." />
<Error Number="I23" SubCode= "30" Type="I/O" Description="FILELIST MFD type error. All files declared in a FILELIST must be opened either as a managed (MFD) file or opened as non-managed file. It is not valid to mix managed and non-managed files in the same FILELIST." />
<Error Number="I23" SubCode= "31" Type="I/O" Description="FILELIST MFD invalid for SUNDM. All of the files declared for a FILELIST must be under the control of the same SUNDM." />
<Error Number="I23" SubCode= "32" Type="I/O" Description="FILELIST requires same FIXED record length. When using FIXED length records, all files in a FILELIST must be declared or created with the same record length." />
<Error Number="I23" SubCode= "33" Type="I/O" Description="FILELIST file must be FIXED record type. All files in the FILELIST must be declared or created with FIXED length records specified. Mixing FIXED and VARIABLE length records in a FILELIST is not allowed." />
<Error Number="I23" SubCode= "34" Type="I/O" Description="FILELIST requires VARIABLE record type. All files in the FILELIST must be declared or created with VARIABLE length records specified. Mixing FIXED and VARIABLE length records in a FILELIST is not allowed." />
<Error Number="I23" SubCode= "35" Type="I/O" Description="FILELIST file record length is invalid. When using VARIABLE length records, the primary or first file in the FILELIST must have a record length less than or equal to any of the secondary files in the FILELIST." />
<Error Number="I23" SubCode= "36" Type="I/O" Description="FILELIST file requires valid key specifications. It is invalid to execute a FILELIST DELETE, UPDATE, or WRITE operation when using an AFILE/IFILE opened without key specification data available for an ISAM file." />
<Error Number="I23" SubCode= "37" Type="I/O" Description="FILELIST file key specifications not present in ISAM file. It is not possible to determine the key specifications from the ISAM file. The ISAM file must be re-indexed or prepared using valid key specifications." />
You can’t perform that action at this time.
