summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sdbc/XDatabaseMetaData.idl
blob: d36650d624d4ee1b99d660e243a23db555cd7c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */
#ifndef __com_sun_star_sdbc_XDatabaseMetaData_idl__
#define __com_sun_star_sdbc_XDatabaseMetaData_idl__

#include <com/sun/star/uno/XInterface.idl>

#include <com/sun/star/sdbc/SQLException.idl>


 module com {  module sun {  module star {  module sdbc {

 published interface XResultSet;
 published interface XConnection;

/** provides comprehensive information about the database as a whole.


    <p>Many of the methods here return lists of information in
    the form of
    com::sun::star::sdbc::XResultSet
    objects.
    You can use the normal com::sun::star::sdbc::XRow
    (or com::sun::star::sdb::XColumn)
    methods such as
    com::sun::star::sdbc::XRow::getString()
    and
    com::sun::star::sdbc::XRow::getInt()
    to retrieve the data from these XResultSets. If a given form of
    metadata is not available, these methods should throw a
    com::sun::star::sdbc::SQLException.
    After calling one of the getXXX() methods,
    one can check whether that value is `NULL`
    with the method com::sun::star::sdbc::XRow::wasNull().
    In the text only "(may be `NULL`)" is mentioned for this case.
    </p>
    <p>Some of these methods take arguments that are String patterns. These
    arguments all have names such as fooPattern. Within a pattern String, "%"
    means match any substring of 0 or more characters, and "_" means match
    any one character. Only metadata entries matching the search pattern
    are returned. If a search pattern argument is set to `VOID`,
    that argument's criteria will be dropped from the search.
    </p>
    <p>
    A
    com::sun::star::sdbc::SQLException
    will be thrown if a driver does not support
    a metadata method. In the case of methods that return an XResultSet,
    either an XResultSet (which may be empty) is returned or a
    SQLException is thrown.</p>
 */
published interface XDatabaseMetaData: com::sun::star::uno::XInterface
{

    /** Can all the procedures returned by getProcedures be called by the
        current user?

        @return
        `TRUE`
        if the user is allowed to call all procedures returned by getProcedures
        otherwise `FALSE`.
        @throws SQLException
            if a database access error occurs.
     */
    boolean allProceduresAreCallable() raises (SQLException);

    /** Can all the tables returned by getTable be SELECTed by the
        current user?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean allTablesAreSelectable() raises (SQLException);

    /** returns the URL for the database connection
     */
    string getURL() raises (SQLException);

    /** returns the user name from this database connection.
     */
    string getUserName() raises (SQLException);

    /** checks if the database in read-only mode.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean isReadOnly() raises (SQLException);

    /** Are NULL values sorted high?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
    */
    boolean nullsAreSortedHigh() raises (SQLException);

    /** Are NULL values sorted low?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
    */
    boolean nullsAreSortedLow() raises (SQLException);

    /** Are NULL values sorted at the start regardless of sort order?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean nullsAreSortedAtStart() raises (SQLException);

    /**  Are NULL values sorted at the end, regardless of sort order?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean nullsAreSortedAtEnd() raises (SQLException);

    /** returns the name of the database product.
     */
    string getDatabaseProductName() raises (SQLException);

    /** returns the version of the database product.
     */
    string getDatabaseProductVersion() raises (SQLException);

    /** returns the name of the SDBC driver.
     */
    string getDriverName() raises (SQLException);

    /** returns the version number of the SDBC driver.
     */
    string getDriverVersion() raises (SQLException);

    /** returns the SDBC driver major version number.
     */
    long getDriverMajorVersion();

    /** returns the SDBC driver minor version number.
     */
    long getDriverMinorVersion();

    /** use the database local files to save the tables.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean usesLocalFiles() raises (SQLException);

    /** use the database one local file to save for each table.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean usesLocalFilePerTable() raises (SQLException);

    /** use the database "mixed case unquoted SQL identifiers" case sensitive.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsMixedCaseIdentifiers() raises (SQLException);

    /** Does the database treat mixed case unquoted SQL identifiers as
        case insensitive and store them in upper case?
            @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean storesUpperCaseIdentifiers() raises (SQLException);

    /** Does the database treat mixed case unquoted SQL identifiers as
        case insensitive and store them in lower case?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean storesLowerCaseIdentifiers() raises (SQLException);

    /** Does the database treat mixed case unquoted SQL identifiers as
        case insensitive and store them in mixed case?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean storesMixedCaseIdentifiers() raises (SQLException);

    /** Does the database treat mixed case quoted SQL identifiers as
        case sensitive and as a result store them in mixed case?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsMixedCaseQuotedIdentifiers() raises (SQLException);

    /** Does the database treat mixed case quoted SQL identifiers as
        case insensitive and store them in upper case?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean storesUpperCaseQuotedIdentifiers() raises (SQLException);

    /** Does the database treat mixed case quoted SQL identifiers as
        case insensitive and store them in lower case?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean storesLowerCaseQuotedIdentifiers() raises (SQLException);

    /** Does the database treat mixed case quoted SQL identifiers as
        case insensitive and store them in mixed case?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean storesMixedCaseQuotedIdentifiers() raises (SQLException);

    /** What's the string used to quote SQL identifiers?
        This returns a space " " if identifier quoting is not supported.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getIdentifierQuoteString() raises (SQLException);

    /** gets a comma-separated list of all a database's SQL keywords
        that are NOT also SQL92 keywords.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getSQLKeywords() raises (SQLException);

    /** gets a comma-separated list of math functions. These are the
        X/Open CLI math function names used in the SDBC function escape
        clause.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getNumericFunctions() raises (SQLException);

    /** gets a comma-separated list of string functions. These are the
        X/Open CLI string function names used in the SDBC function escape
        clause.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getStringFunctions() raises (SQLException);

    /** gets a comma-separated list of system functions. These are the
        X/Open CLI system function names used in the SDBC function escape
        clause.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getSystemFunctions() raises (SQLException);

    /** gets a comma-separated list of time and date functions.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getTimeDateFunctions() raises (SQLException);

    /** gets the string that can be used to escape wildcard characters.
        This is the string that can be used to escape "_" or "%" in
        the string pattern style catalog search parameters.


        <p>
        The "_" character represents any single character.
        </p>
        <p>
        The "%" character represents any sequence of zero or
        more characters.
        </p>
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getSearchStringEscape() raises (SQLException);

    /** gets all the "extra" characters that can be used in unquoted
        identifier names (those beyond a-z, A-Z, 0-9 and _).
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getExtraNameCharacters() raises (SQLException);

    /** support the Database "ALTER TABLE" with add column?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsAlterTableWithAddColumn() raises (SQLException);

    /** support the Database  "ALTER TABLE" with drop column?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsAlterTableWithDropColumn() raises (SQLException);

    /** support the Database column aliasing?


        <p>
        The SQL AS clause can be used to provide names for
        computed columns or to provide alias names for columns as required.
        </p>
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsColumnAliasing() raises (SQLException);

    /** are concatenations between NULL and non-NULL values NULL?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean nullPlusNonNullIsNull() raises (SQLException);

    /** `TRUE`
            , if the Database supports the CONVERT function between SQL types,
            otherwise `FALSE`.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsTypeConversion() raises (SQLException);

    /**     `TRUE`
            , if the Database supports the CONVERT between the given SQL types
            otherwise `FALSE`.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsConvert([in]long fromType, [in]long toType)
        raises (SQLException);

    /** Are table correlation names supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsTableCorrelationNames() raises (SQLException);

    /** If table correlation names are supported, are they restricted
        to be different from the names of the tables?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsDifferentTableCorrelationNames()
        raises (SQLException);

    /** Are expressions in "ORDER BY" lists supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsExpressionsInOrderBy() raises (SQLException);

    /** Can an "ORDER BY" clause use columns not in the SELECT statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsOrderByUnrelated() raises (SQLException);

    /** Is some form of "GROUP BY" clause supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsGroupBy() raises (SQLException);

    /** Can a "GROUP BY" clause use columns not in the SELECT?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsGroupByUnrelated() raises (SQLException);

    /** Can a "GROUP BY" clause add columns not in the SELECT
        provided it specifies all the columns in the SELECT?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsGroupByBeyondSelect() raises (SQLException);

    /** Is the escape character in "LIKE" clauses supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsLikeEscapeClause() raises (SQLException);

    /** Are multiple XResultSets from a single execute supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsMultipleResultSets() raises (SQLException);

    /** Can we have multiple transactions open at once (on different
        connections)?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsMultipleTransactions() raises (SQLException);

    /** Can columns be defined as non-nullable?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsNonNullableColumns() raises (SQLException);

    /**     `TRUE`, if the database supports ODBC Minimum SQL grammar,
            otherwise `FALSE`.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsMinimumSQLGrammar() raises (SQLException);

    /** `TRUE`, if the database supports ODBC Core SQL grammar,
            otherwise `FALSE`.
            @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsCoreSQLGrammar() raises (SQLException);

    /**
            `TRUE`, if the database supports ODBC Extended SQL grammar,
            otherwise `FALSE`.
            @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsExtendedSQLGrammar() raises (SQLException);

    /** @returns
            `TRUE`, if the database supports ANSI92 entry level SQL grammar,
            otherwise `FALSE`.
            @throws SQLException
            if a database access error occurs.
     */
    boolean supportsANSI92EntryLevelSQL() raises (SQLException);

    /** @returns
            `TRUE`, if the database supports ANSI92 intermediate SQL grammar,
            otherwise `FALSE`.
            @throws SQLException
            if a database access error occurs.
     */
    boolean supportsANSI92IntermediateSQL() raises (SQLException);

    /** @returns
            `TRUE`, if the database supports ANSI92 full SQL grammar,
            otherwise `FALSE`.
            @throws SQLException
            if a database access error occurs.
     */
    boolean supportsANSI92FullSQL() raises (SQLException);

    /** returns
            `TRUE`, if the Database supports SQL Integrity Enhancement Facility,
            otherwise `FALSE`.
            @throws SQLException
            if a database access error occurs.
     */
    boolean supportsIntegrityEnhancementFacility() raises (SQLException);

    /** @returns
            `TRUE`, if some form of outer join is supported,
            otherwise `FALSE`.
            @throws SQLException
            if a database access error occurs.
     */
    boolean supportsOuterJoins() raises (SQLException);

    /** @returns
            `TRUE`, if full nested outer joins are supported,
            otherwise `FALSE`.
            @throws SQLException
            if a database access error occurs.
     */
    boolean supportsFullOuterJoins() raises (SQLException);

    /** @returns
            `TRUE`, if there is limited support for outer joins.
            (This will be `TRUE` if supportFullOuterJoins is `TRUE`.)
            `FALSE` is returned otherwise.
            @throws SQLException
            if a database access error occurs.
     */
    boolean supportsLimitedOuterJoins() raises (SQLException);

    /** return the database vendor's preferred term for "schema"
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getSchemaTerm() raises (SQLException);

    /** return the database vendor's preferred term for "procedure"
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getProcedureTerm() raises (SQLException);

    /** return the database vendor's preferred term for "catalog"
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getCatalogTerm() raises (SQLException);

    /** Does a catalog appear at the start of a qualified table name?
        (Otherwise it appears at the end)
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean isCatalogAtStart() raises (SQLException);

    /** return the separator between catalog and table name
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    string getCatalogSeparator() raises (SQLException);

    /** Can a schema name be used in a data manipulation statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSchemasInDataManipulation() raises (SQLException);

    /** Can a schema name be used in a procedure call statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSchemasInProcedureCalls() raises (SQLException);

    /** Can a schema name be used in a table definition statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSchemasInTableDefinitions() raises (SQLException);

    /** Can a schema name be used in an index definition statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSchemasInIndexDefinitions() raises (SQLException);

    /** Can a schema name be used in a privilege definition statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSchemasInPrivilegeDefinitions()
        raises (SQLException);

    /** Can a catalog name be used in a data manipulation statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsCatalogsInDataManipulation() raises (SQLException);

    /** Can a catalog name be used in a procedure call statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsCatalogsInProcedureCalls() raises (SQLException);

    /** Can a catalog name be used in a table definition statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsCatalogsInTableDefinitions() raises (SQLException);

    /** Can a catalog name be used in an index definition statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsCatalogsInIndexDefinitions() raises (SQLException);

    /** Can a catalog name be used in a privilege definition statement?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsCatalogsInPrivilegeDefinitions()
        raises (SQLException);

    /** Is positioned DELETE supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsPositionedDelete() raises (SQLException);

    /** Is positioned UPDATE supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsPositionedUpdate() raises (SQLException);

    /** Is SELECT for UPDATE supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSelectForUpdate() raises (SQLException);

    /** Are stored procedure calls using the stored procedure escape
        syntax supported?
            @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsStoredProcedures() raises (SQLException);

    /** Are subqueries in comparison expressions supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSubqueriesInComparisons() raises (SQLException);

    /** Are subqueries in "exists" expressions supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSubqueriesInExists() raises (SQLException);

    /** Are subqueries in "in" statements supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSubqueriesInIns() raises (SQLException);

    /** Are subqueries in quantified expressions supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsSubqueriesInQuantifieds() raises (SQLException);

    /** Are correlated subqueries supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsCorrelatedSubqueries() raises (SQLException);

    /** Is SQL UNION supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsUnion() raises (SQLException);

    /** Is SQL UNION ALL supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsUnionAll() raises (SQLException);

    /** Can cursors remain open across commits?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsOpenCursorsAcrossCommit() raises (SQLException);

    /** Can cursors remain open across rollbacks?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsOpenCursorsAcrossRollback() raises (SQLException);

    /** Can statements remain open across commits?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsOpenStatementsAcrossCommit() raises (SQLException);

    /** Can statements remain open across rollbacks?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsOpenStatementsAcrossRollback()
        raises (SQLException);

    /** return the maximal number of hex characters in an inline binary literal
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxBinaryLiteralLength() raises (SQLException);

    /** return the max length for a character literal
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxCharLiteralLength() raises (SQLException);

    /** return the limit on column name length
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxColumnNameLength() raises (SQLException);

    /** return the maximum number of columns in a "GROUP BY" clause
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxColumnsInGroupBy() raises (SQLException);

    /** return the maximum number of columns allowed in an index
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxColumnsInIndex() raises (SQLException);

    /** return the maximum number of columns in an "ORDER BY" clause
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxColumnsInOrderBy() raises (SQLException);

    /** return the maximum number of columns in a "SELECT" list
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxColumnsInSelect() raises (SQLException);

    /** return the maximum number of columns in a table
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxColumnsInTable() raises (SQLException);

    /** return the number of active connections at a time to this database.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxConnections() raises (SQLException);

    /** return the maximum cursor name length
    @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxCursorNameLength() raises (SQLException);

    /** return the maximum length of an index (in bytes)
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxIndexLength() raises (SQLException);

    /** return the maximum length allowed for a schema name
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxSchemaNameLength() raises (SQLException);

    /** return the maximum length of a procedure name
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxProcedureNameLength() raises (SQLException);

    /** return the maximum length of a catalog name
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxCatalogNameLength() raises (SQLException);

    /** return the maximum length of a single row.
    @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxRowSize() raises (SQLException);

    /** Did getMaxRowSize() include LONGVARCHAR and LONGVARBINARY
        blobs?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean doesMaxRowSizeIncludeBlobs() raises (SQLException);

    /** return the maximum length of a SQL statement
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxStatementLength() raises (SQLException);

    /** return the maximal number of open active statements at one time to this database
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxStatements() raises (SQLException);

    /** return the maximum length of a table name
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxTableNameLength() raises (SQLException);

    /** return the maximum number of tables in a SELECT statement
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxTablesInSelect() raises (SQLException);

    /** return the maximum length of a user name
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    long getMaxUserNameLength() raises (SQLException);

    /** return the database default transaction isolation level.
        The values are defined in
        com::sun::star::sdbc::TransactionIsolation.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
        @see com::sun::star::sdbc::XConnection
     */
    long getDefaultTransactionIsolation() raises (SQLException);

    /** support the Database transactions?
        If not, invoking the method
        com::sun::star::sdbc::XConnection::commit()
        is a noop and the
        isolation level is TransactionIsolation_NONE.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsTransactions() raises (SQLException);

    /** Does this database support the given transaction isolation level?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
 @see com::sun::star::sdbc::Connection
     */
    boolean supportsTransactionIsolationLevel([in]long level)
                            raises (SQLException);

    /** support the Database both data definition and data manipulation statements
        within a transaction?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
<!-- JRH: Unclear on the intent of these many support questions.
        If asking, it should state, "Does the Database support both...?
        If declaring, it should state something like the following:

        metadata:   supportsDataDefinitionAndDataManipulationTransactions

    "provides support for both data definition and data manipulation statements within a transaction."
 -->     */
    boolean supportsDataDefinitionAndDataManipulationTransactions()
                             raises (SQLException);

    /** are only data manipulation statements within a transaction
        supported?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsDataManipulationTransactionsOnly()
                            raises (SQLException);

    /** does a data definition statement within a transaction force the
        transaction to commit?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean dataDefinitionCausesTransactionCommit()
                            raises (SQLException);

    /** is a data definition statement within a transaction ignored?
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean dataDefinitionIgnoredInTransactions()
                            raises (SQLException);

    /** Gets a description of the stored procedures available in a
        catalog.


        <p>
        Only procedure descriptions matching the schema and
        procedure name criteria are returned. They are ordered by
        PROCEDURE_SCHEM, and PROCEDURE_NAME.
        </p>
        <p>
        Each procedure description has the following columns:
        </p>
        <ol>
        <li>
        <b>PROCEDURE_CAT</b> string => procedure catalog (may be `NULL`)
        </li>
        <li>
        <b>PROCEDURE_SCHEM</b> string => procedure schema (may be `NULL`)
        </li>
        <li>
        <b>PROCEDURE_NAME</b> string => procedure name
        </li>
        <li> reserved for future use
        </li>
        <li> reserved for future use
        </li>
        <li> reserved for future use
        </li>
        <li>
        <b>REMARKS</b> string => explanatory comment on the procedure
        </li>
        <li>
        <b>PROCEDURE_TYPE</b> short => kind of procedure:
        <ul>
        <li> UNKNOWN - May return a result
        </li>
        <li> NO - Does not return a result
        </li>
        <li> RETURN - Returns a result
        </li>
        </ul>
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schemaPattern
            a schema name pattern; "" retrieves those without a schema
        @param procedureNamePattern
            a procedure name pattern
        @returns
            each row is a procedure description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getProcedures([in]any catalog, [in]string schemaPattern,
                    [in]string procedureNamePattern) raises (SQLException);

    /** gets a description of a catalog's stored procedure parameters
        and result columns.


        <p>
        Only descriptions matching the schema, procedure and
        parameter name criteria are returned. They are ordered by
        PROCEDURE_SCHEM and PROCEDURE_NAME. Within this, the return value,
        if any, is first. Next are the parameter descriptions in call
        order. The column descriptions follow in column number order.
        </p>
        <p>Each row in the XResultSet is a parameter description or
        column description with the following fields:
        </p>
        <ol>
        <li>
        <b>PROCEDURE_CAT</b> string => procedure catalog (may be `NULL`)
        </li>
        <li>
        <b>PROCEDURE_SCHEM</b> string => procedure schema (may be `NULL`)
        </li>
        <li>
        <b>PROCEDURE_NAME</b> string => procedure name
        </li>
        <li>
        <b>COLUMN_NAME</b> string => column/parameter name
        </li>
        <li>
        <b>COLUMN_TYPE</b> Short => kind of column/parameter:
        <ul>
        <li> UNKNOWN - nobody knows
        </li>
        <li> IN - IN parameter
        </li>
        <li> INOUT - INOUT parameter
        </li>
        <li> OUT - OUT parameter
        </li>
        <li> RETURN - procedure return value
        </li>
        <li> RESULT - result column in XResultSet
        </li>
        </ul>
        </li>
        <li>
        <b>DATA_TYPE</b> short => SQL type from java.sql.Types
        </li>
        <li>
        <b>TYPE_NAME</b> string => SQL type name, for a UDT type the
        type name is fully qualified
        </li>
        <li>
        <b>PRECISION</b> long => precision
        </li>
        <li>
        <b>LENGTH</b> long => length in bytes of data
        </li>
        <li>
        <b>SCALE</b> short => scale
        </li>
        <li>
        <b>RADIX</b> short => radix
        </li>
        <li>
        <b>NULLABLE</b> short => can it contain NULL?
        <ul>
        <li> NO_NULLS - does not allow NULL values
        </li>
        <li> NULLABLE - allows NULL values
        </li>
        <li> NULLABLE_UNKNOWN - nullability unknown
        </li>
        </ul>
        </li>
        <li>
        <b>REMARKS</b> string => comment describing parameter/column
        </li>
        </ol>
        <p>
        <b>Note:</b> Some databases may not return the column
        descriptions for a procedure. Additional columns beyond
        REMARKS can be defined by the database.
        </p>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schemaPattern
            a schema name pattern; "" retrieves those without a schema
        @param procedureNamePattern
            a procedure name pattern
        @param columnNamePattern
            a column name pattern
        @returns
            each row describes a stored procedure parameter or column
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getProcedureColumns([in]any catalog, [in]string schemaPattern,
                                   [in]string procedureNamePattern,
                                   [in]string columnNamePattern)
                        raises (SQLException);

    /** gets a description of tables available in a catalog.


        <p>Only table descriptions matching the catalog, schema, table
        name, and type criteria are returned. They are ordered by
        TABLE_TYPE, TABLE_SCHEM, and TABLE_NAME.
        </p>
        <p>Each table description has the following columns:
        </p>
        <ol>
        <li>
        <b>TABLE_CAT</b> string => table catalog (may be `NULL`)
        </li>
        <li>
        <b>TABLE_SCHEM</b> string => table schema (may be `NULL`)
        </li>
        <li>
        <b>TABLE_NAME</b> string => table name
        </li>
        <li>
        <b>TABLE_TYPE</b> string => table type. Typical types are "TABLE",
        "VIEW", "SYSTEM TABLE", "GLOBAL TEMPORARY",
        "LOCAL TEMPORARY", "ALIAS", "SYNONYM".
        </li>
        <li>
        <b>REMARKS</b> string => explanatory comment on the table
        </li>
        </ol>
        <p>
        <b>Note:</b> Some databases may not return information for
        all tables.
        </p>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schemaPattern
            a schema name pattern; "" retrieves those without a schema
        @param tableNamePattern
            a table name pattern
        @param types
            a list of table types to include
        @returns
            each row is a table description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getTables([in]any catalog, [in]string schemaPattern,
        [in]string tableNamePattern, [in]sequence<string> types)
        raises (SQLException);

    /** Gets the schema names available in this database. The results
        are ordered by schema name.


        <p>The schema column is:
        </p>
        <ol>
        <li>
        <b>TABLE_SCHEM</b> string => schema name
        </li>
        </ol>
        @returns
            each row has a single String column that is a schema name
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getSchemas() raises (SQLException);

    /** gets the catalog names available in this database. The results
        are ordered by catalog name.


        <p>The catalog column is:
        </p>
        <ol>
        <li>
        <b>TABLE_CAT</b> string => catalog name
        </li>
        </ol>
        @returns
            each row has a single String column that is a catalog name
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getCatalogs() raises (SQLException);

    /** gets the table types available in this database. The results
        are ordered by table type.


        <p>The table type is:
        </p>
        <ol>
        <li>
        <b>TABLE_TYPE</b> string => table type. Typical types are "TABLE",
        "VIEW", "SYSTEM TABLE", "GLOBAL TEMPORARY",
        "LOCAL TEMPORARY", "ALIAS", "SYNONYM".
        </li>
        </ol>
        @returns
            each row has a single String column that is a table type
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getTableTypes() raises (SQLException);

    /** gets a description of table columns available in
        the specified catalog.


        <p>Only column descriptions matching the catalog, schema, table
        and column name criteria are returned. They are ordered by
        TABLE_SCHEM, TABLE_NAME, and ORDINAL_POSITION.
        </p>
        <p>Each column description has the following columns:
        </p>
        <ol>
        <li>
        <b>TABLE_CAT</b> string => table catalog (may be `NULL`)
        </li>
        <li>
        <b>TABLE_SCHEM</b> string => table schema (may be `NULL`)
        </li>
        <li>
        <b>TABLE_NAME</b> string => table name
        </li>
        <li>
        <b>COLUMN_NAME</b> string => column name
        </li>
        <li>
        <b>DATA_TYPE</b> short => SQL type from java.sql.Types
        </li>
        <li>
        <b>TYPE_NAME</b> string => Data source dependent type name,
        for a UDT the type name is fully qualified
        </li>
        <li>
        <b>COLUMN_SIZE</b> long => column size. For char or date
        types this is the maximum number of characters, for numeric or
        decimal types this is precision.
        </li>
        <li>
        <b>BUFFER_LENGTH</b> is not used.
        </li>
        <li>
        <b>DECIMAL_DIGITS</b> long => the number of fractional digits
        </li>
        <li>
        <b>NUM_PREC_RADIX</b> long => Radix (typically either 10 or 2)
        </li>
        <li>
        <b>NULLABLE</b> long => is NULL allowed?
        <ul>
        <li> NO_NULLS - might not allow NULL values
        </li>
        <li> NULLABLE - definitely allows NULL values
        </li>
        <li> NULLABLE_UNKNOWN - nullability unknown
        </li>
        </ul>
        </li>
        <li>
        <b>REMARKS</b> string => comment describing column (may be `NULL`)
        </li>
        <li>
        <b>COLUMN_DEF</b> string => default value (may be `NULL`)
        </li>
        <li>
        <b>SQL_DATA_TYPE</b> long => unused
        </li>
        <li>
        <b>SQL_DATETIME_SUB</b> long => unused
        </li>
        <li>
        <b>CHAR_OCTET_LENGTH</b> long => for char types the
        maximum number of bytes in the column
        </li>
        <li>
        <b>ORDINAL_POSITION</b> int => index of column in table
        (starting at 1)
        </li>
        <li>
        <b>IS_NULLABLE</b> string => "NO" means column definitely
        does not allow NULL values; "YES" means the column might
        allow NULL values. An empty string means nobody knows.
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schemaPattern
            a schema name pattern; "" retrieves those without a schema
        @param tableNamePattern
            a table name pattern
        @param columnNamePattern
            a column name pattern
        @returns
            each row is a column description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getColumns([in]any catalog, [in]string schemaPattern,
        [in]string tableNamePattern, [in]string columnNamePattern)
                    raises (SQLException);

    /** gets a description of the access rights for a table's columns.


        <p>
        Only privileges matching the column name criteria are
        returned. They are ordered by COLUMN_NAME and PRIVILEGE.
        </p>
        <p>Each privilege description has the following columns:
        </p>
        <ol>
        <li>
        <b>TABLE_CAT</b> string => table catalog (may be `NULL`)
        </li>
        <li>
        <b>TABLE_SCHEM</b> string => table schema (may be `NULL`)
        </li>
        <li>
        <b>TABLE_NAME</b> string => table name
        </li>
        <li>
        <b>COLUMN_NAME</b> string => column name
        </li>
        <li>
        <b>GRANTOR</b> => granter of access (may be `NULL`)
        </li>
        <li>
        <b>GRANTEE</b> string => grantee of access
        </li>
        <li>
        <b>PRIVILEGE</b> string => name of access (SELECT,
        INSERT, UPDATE, REFERENCES, ...)
        </li>
        <li>
        <b>IS_GRANTABLE</b> string => "YES" if grantee is permitted
        to grant to others; "NO" if not; `NULL` if unknown
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schema
            a schema name ; "" retrieves those without a schema
        @param table
            a table name
        @param columnNamePattern
            a column name pattern
        @returns
            each row is a column privilege description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getColumnPrivileges([in]any catalog, [in]string schema,
        [in]string table, [in]string columnNamePattern) raises (SQLException);

    /** gets a description of the access rights for each table available
        in a catalog. Note that a table privilege applies to one or
        more columns in the table. It would be wrong to assume that
        this privilege applies to all columns (this may be `TRUE` for
        some systems but is not `TRUE` for all.)


        <p>Only privileges matching the schema and table name
        criteria are returned. They are ordered by TABLE_SCHEM,
        TABLE_NAME, and PRIVILEGE.
        </p>
        <p>Each privilege description has the following columns:
        </p>
        <ol>
        <li>
        <b>TABLE_CAT</b> string => table catalog (may be `NULL`)
        </li>
        <li>
        <b>TABLE_SCHEM</b> string => table schema (may be `NULL`)
        </li>
        <li>
        <b>TABLE_NAME</b> string => table name
        </li>
        <li>
        <b>GRANTOR</b> => granter of access (may be `NULL`)
        </li>
        <li>
        <b>GRANTEE</b> string => grantee of access
        </li>
        <li>
        <b>PRIVILEGE</b> string => name of access (SELECT,
        INSERT, UPDATE, REFERENCES, ...)
        </li>
        <li>
        <b>IS_GRANTABLE</b> string => "YES" if grantee is permitted
        to grant to others; "NO" if not; `NULL` if unknown
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schemaPattern
            a schema name pattern; "" retrieves those without a schema
        @param tableNamePattern
            a table name pattern
        @returns
            each row is a table privilege description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getTablePrivileges([in]any catalog, [in]string schemaPattern,
                [in]string tableNamePattern) raises (SQLException);

    /** gets a description of a table's optimal set of columns that
        uniquely identifies a row. They are ordered by SCOPE.


        <p>Each column description has the following columns:
        </p>
        <ol>
        <li>
        <b>SCOPE</b> short => actual scope of result
        <ul>
        <li> TEMPORARY - very temporary, while using row
        </li>
        <li> TRANSACTION - valid for remainder of current transaction
        </li>
        <li> SESSION - valid for remainder of current session
        </li>
        </ul>
        </li>
        <li>
        <b>COLUMN_NAME</b> string => column name
        </li>
        <li>
        <b>DATA_TYPE</b> short => SQL data type from java.sql.Types
        </li>
        <li>
        <b>TYPE_NAME</b> string => Data source dependent type name,
        for a UDT the type name is fully qualified
        </li>
        <li>
        <b>COLUMN_SIZE</b> long => precision
        </li>
        <li>
        <b>BUFFER_LENGTH</b> long => not used
        </li>
        <li>
        <b>DECIMAL_DIGITS</b> short  => scale
        </li>
        <li>
        <b>PSEUDO_COLUMN</b> short => is this a pseudo column
        like an Oracle ROWID
        <ul>
        <li> UNKNOWN - may or may not be pseudo column
        </li>
        <li> NOT_PSEUDO - is NOT a pseudo column
        </li>
        <li> PSEUDO - is a pseudo column
        </li>
        </ul>
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schema
            a schema name; "" retrieves those without a schema
        @param table
            a table name
        @param scope
            the scope of interest; use same values as SCOPE
        @param nullable
            include columns that are nullable?
        @returns
            each row is a column description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getBestRowIdentifier([in]any catalog, [in]string schema,
        [in]string table, [in]long scope, [in] boolean nullable)
        raises (SQLException);

    /** gets a description of a table's columns that are automatically
        updated when any value in a row is updated. They are
        unordered.


        <p>Each column description has the following columns:
        </p>
        <ol>
        <li>
        <b>SCOPE</b> short => is not used
        </li>
        <li>
        <b>COLUMN_NAME</b> string => column name
        </li>
        <li>
        <b>DATA_TYPE</b> short => SQL data type from java.sql.Types
        </li>
        <li>
        <b>TYPE_NAME</b> string => Data source dependent type name
        </li>
        <li>
        <b>COLUMN_SIZE</b> long => precision
        </li>
        <li>
        <b>BUFFER_LENGTH</b> long => length of column value in bytes
        </li>
        <li>
        <b>DECIMAL_DIGITS</b> short  => scale
        </li>
        <li>
        <b>PSEUDO_COLUMN</b> short => is this a pseudo column
        like an Oracle ROWID
        <ul>
        <li> UNKNOWN - may or may not be pseudo column
        </li>
        <li> NOT_PSEUDO - is NOT a pseudo column
        </li>
        <li> PSEUDO - is a pseudo column
        </li>
        </ul>
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schema
            a schema name; "" retrieves those without a schema
        @param table
            a table name
        @returns
            each row is a column description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getVersionColumns([in]any catalog, [in]string schema,
                [in]string table) raises (SQLException);

    /** gets a description of a table's primary key columns. They
        are ordered by COLUMN_NAME.


        <p>Each primary key column description has the following columns:
        </p>
        <ol>
        <li>
        <b>TABLE_CAT</b> string => table catalog (may be `NULL`)
        </li>
        <li>
        <b>TABLE_SCHEM</b> string => table schema (may be `NULL`)
        </li>
        <li>
        <b>TABLE_NAME</b> string => table name
        </li>
        <li>
        <b>COLUMN_NAME</b> string => column name
        </li>
        <li>
        <b>KEY_SEQ</b> short => sequence number within primary key
        </li>
        <li>
        <b>PK_NAME</b> string => primary key name (may be `NULL`)
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schema
            a schema name; "" retrieves those without a schema
        @param table
            a table name
        @returns
            each row is a primary key column description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getPrimaryKeys([in]any catalog, [in]string schema,
                [in]string table) raises (SQLException);

    /** gets a description of the primary key columns that are
        referenced by a table's foreign key columns (the primary keys
        imported by a table). They are ordered by PKTABLE_CAT,
        PKTABLE_SCHEM, PKTABLE_NAME, and KEY_SEQ.


        <p>Each primary key column description has the following columns:
        </p>
        <ol>
        <li>
        <b>PKTABLE_CAT</b> string => primary key table catalog
        being imported (may be `NULL`)
        </li>
        <li>
        <b>PKTABLE_SCHEM</b> string => primary key table schema
        being imported (may be `NULL`)
        </li>
        <li>
        <b>PKTABLE_NAME</b> string => primary key table name
        being imported
        </li>
        <li>
        <b>PKCOLUMN_NAME</b> string => primary key column name
        being imported
        </li>
        <li>
        <b>FKTABLE_CAT</b> string => foreign key table catalog (may be `NULL`)
        </li>
        <li>
        <b>FKTABLE_SCHEM</b> string => foreign key table schema (may be `NULL`)
        </li>
        <li>
        <b>FKTABLE_NAME</b> string => foreign key table name
        </li>
        <li>
        <b>FKCOLUMN_NAME</b> string => foreign key column name
        </li>
        <li>
        <b>KEY_SEQ</b> short => sequence number within foreign key
        </li>
        <li>
        <b>UPDATE_RULE</b> short => What happens to
        foreign key when primary is updated:
        <ul>
        <li> importedNoAction - do not allow update of primary
        key if it has been imported
        </li>
        <li> importedKeyCascade - change imported key to agree
        with primary key update
        </li>
        <li> importedKeySetNull - change imported key to NULL if
        its primary key has been updated
        </li>
        <li> importedKeySetDefault - change imported key to default values
        if its primary key has been updated
        </li>
        <li> importedKeyRestrict - same as importedKeyNoAction
        (for ODBC 2.x compatibility)
        </li>
        </ul>
        </li>
        <li>
        <b>DELETE_RULE</b> short => What happens to
        the foreign key when primary is deleted.
        <ul>
        <li> importedKeyNoAction - do not allow delete of primary
        key if it has been imported
        </li>
        <li> importedKeyCascade - delete rows that import a deleted key
        </li>
        <li> importedKeySetNull - change imported key to NULL if
        its primary key has been deleted
        </li>
        <li> importedKeyRestrict - same as importedKeyNoAction
        (for ODBC 2.x compatibility)
        </li>
        <li> importedKeySetDefault - change imported key to default if
        its primary key has been deleted
        </li>
        </ul>
        </li>
        <li>
        <b>FK_NAME</b> string => foreign key name (may be `NULL`)
        </li>
        <li>
        <b>PK_NAME</b> string => primary key name (may be `NULL`)
        </li>
        <li>
        <b>DEFERRABILITY</b> short => can the evaluation of foreign key
        constraints be deferred until commit
        <ul>
        <li> importedKeyInitiallyDeferred - see SQL92 for definition
        </li>
        <li> importedKeyInitiallyImmediate - see SQL92 for definition
        </li>
        <li> importedKeyNotDeferrable - see SQL92 for definition
        </li>
        </ul>
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schema
            a schema name; "" retrieves those without a schema
        @param table
            a table name
        @returns
            each row is a primary key column description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getImportedKeys([in]any catalog, [in]string schema,
                [in]string table) raises (SQLException);

    /** gets a description of the foreign key columns that reference a
        table's primary key columns (the foreign keys exported by a
        table). They are ordered by FKTABLE_CAT, FKTABLE_SCHEM,
        FKTABLE_NAME, and KEY_SEQ.


        <p>Each foreign key column description has the following columns:
        </p>
        <ol>
        <li>
        <b>PKTABLE_CAT</b> string => primary key table catalog (may be `NULL`)
        </li>
        <li>
        <b>PKTABLE_SCHEM</b> string => primary key table schema (may be `NULL`)
        </li>
        <li>
        <b>PKTABLE_NAME</b> string => primary key table name
        </li>
        <li>
        <b>PKCOLUMN_NAME</b> string => primary key column name
        </li>
        <li>
        <b>FKTABLE_CAT</b> string => foreign key table catalog (may be `NULL`)
        being exported (may be `NULL`)
        </li>
        <li>
        <b>FKTABLE_SCHEM</b> string => foreign key table schema (may be `NULL`)
        being exported (may be `NULL`)
        </li>
        <li>
        <b>FKTABLE_NAME</b> string => foreign key table name
        being exported
        </li>
        <li>
        <b>FKCOLUMN_NAME</b> string => foreign key column name
        being exported
        </li>
        <li>
        <b>KEY_SEQ</b> short => sequence number within foreign key
        </li>
        <li>
        <b>UPDATE_RULE</b> short => What happens to
        foreign key when primary is updated:
        <ul>
        <li> NO_ACTION - do not allow update of primary
        key if it has been imported
        </li>
        <li> CASCADE - change imported key to agree
        with primary key update
        </li>
        <li> SET_NULL - change imported key to NULL if
        its primary key has been updated
        </li>
        <li> SET_DEFAULT - change imported key to default values
        if its primary key has been updated
        </li>
        <li> RESTRICT - same as importedKeyNoAction
        (for ODBC 2.x compatibility)
        </li>
        </ul>
        </li>
        <li>
        <b>DELETE_RULE</b> short => What happens to
        the foreign key when primary is deleted.
        <ul>
        <li> NO_ACTION - do not allow delete of primary
        key if it has been imported
        </li>
        <li> CASCADE - delete rows that import a deleted key
        </li>
        <li> SET_NULL - change imported key to NULL if
        its primary key has been deleted
        </li>
        <li> RESTRICT - same as importedKeyNoAction
        (for ODBC 2.x compatibility)
        </li>
        <li> SET_DEFAULT - change imported key to default if
        its primary key has been deleted
        </li>
        </ul>
        </li>
        <li>
        <b>FK_NAME</b> string => foreign key name (may be `NULL`)
        </li>
        <li>
        <b>PK_NAME</b> string => primary key name (may be `NULL`)
        </li>
        <li>
        <b>DEFERRABILITY</b> short => can the evaluation of foreign key
        constraints be deferred until commit
        <ul>
        <li> INITIALLY_DEFERRED - see SQL92 for definition
        </li>
        <li> INITIALLY_IMMEDIATE - see SQL92 for definition
        </li>
        <li> NONE - see SQL92 for definition
        </li>
        </ul>
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schema
            a schema name; "" retrieves those without a schema
        @param table
            a table name
        @returns
            each row is a foreign key column description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getExportedKeys([in]any catalog, [in]string schema,
                [in]string table) raises (SQLException);

    /** gets a description of the foreign key columns in the foreign key
        table that reference the primary key columns of the primary key
        table (describe how one table imports another's key.) This
        should normally return a single foreign key/primary key pair
        (most tables only import a foreign key from a table once.). They
        are ordered by FKTABLE_CAT, FKTABLE_SCHEM, FKTABLE_NAME, and
        KEY_SEQ.


        <p>Each foreign key column description has the following columns:
        </p>
        <ol>
        <li>
        <b>PKTABLE_CAT</b> string => primary key table catalog (may be `NULL`)
        </li>
        <li>
        <b>PKTABLE_SCHEM</b> string => primary key table schema (may be `NULL`)
        </li>
        <li>
        <b>PKTABLE_NAME</b> string => primary key table name
        </li>
        <li>
        <b>PKCOLUMN_NAME</b> string => primary key column name
        </li>
        <li>
        <b>FKTABLE_CAT</b> string => foreign key table catalog (may be `NULL`)
        being exported (may be `NULL`)
        </li>
        <li>
        <b>FKTABLE_SCHEM</b> string => foreign key table schema (may be `NULL`)
        being exported (may be `NULL`)
        </li>
        <li>
        <b>FKTABLE_NAME</b> string => foreign key table name
        being exported
        </li>
        <li>
        <b>FKCOLUMN_NAME</b> string => foreign key column name
        being exported
        </li>
        <li>
        <b>KEY_SEQ</b> short => sequence number within foreign key
        </li>
        <li>
        <b>UPDATE_RULE</b> short => What happens to
        foreign key when primary is updated:
        <ul>
        <li> NO_ACTION - do not allow update of primary
        key if it has been imported
        </li>
        <li> CASCADE - change imported key to agree
        with primary key update
        </li>
        <li> SET_NULL - change imported key to NULL if
        its primary key has been updated
        </li>
        <li> SET_DEFAULT - change imported key to default values
        if its primary key has been updated
        </li>
        <li> RESTRICT - same as importedKeyNoAction
        (for ODBC 2.x compatibility)
        </li>
        </ul>
        </li>
        <li>
        <b>DELETE_RULE</b> short => What happens to
        the foreign key when primary is deleted.
        <ul>
        <li> NO_ACTION - do not allow delete of primary
        key if it has been imported
        </li>
        <li> CASCADE - delete rows that import a deleted key
        </li>
        <li> SET_NULL - change imported key to NULL if
        its primary key has been deleted
        </li>
        <li> RESTRICT - same as importedKeyNoAction
        (for ODBC 2.x compatibility)
        </li>
        <li> SET_DEFAULT - change imported key to default if
        its primary key has been deleted
        </li>
        </ul>
        </li>
        <li>
        <b>FK_NAME</b> string => foreign key name (may be `NULL`)
        </li>
        <li>
        <b>PK_NAME</b> string => primary key name (may be `NULL`)
        </li>
        <li>
        <b>DEFERRABILITY</b> short => can the evaluation of foreign key
        constraints be deferred until commit
        <ul>
        <li> INITIALLY_DEFERRED - see SQL92 for definition
        </li>
        <li> INITIALLY_IMMEDIATE - see SQL92 for definition
        </li>
        <li> NONE - see SQL92 for definition
        </li>
        </ul>
        </li>
        </ol>
        @param primaryCatalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param primarySchema
            a schema name; "" retrieves those without a schema
        @param primaryTable
            the table name that exports the key
        @param foreignCatalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param foreignSchema
            a schema name; "" retrieves those without a schema
        @param foreignTable
            the table name that imports the key
        @returns
            each row is a foreign key column description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getCrossReference(
        [in]any primaryCatalog, [in]string primarySchema,
        [in]string primaryTable,
        [in]any foreignCatalog, [in]string foreignSchema,
        [in]string foreignTable) raises (SQLException);

    /** gets a description of all the standard SQL types supported by
        this database. They are ordered by DATA_TYPE and then by how
        closely the data type maps to the corresponding SDBC SQL type.



        <p>Each type description has the following columns:
        </p>
        <ol>
        <li>
        <b>TYPE_NAME</b> string => Type name
        </li>
        <li>
        <b>DATA_TYPE</b> short => SQL data type from java.sql.Types
        </li>
        <li>
        <b>PRECISION</b> long => maximum precision
        </li>
        <li>
        <b>LITERAL_PREFIX</b> string => prefix used to quote a literal
        (may be `NULL`)
        </li>
        <li>
        <b>LITERAL_SUFFIX</b> string => suffix used to quote a literal
        (may be `NULL`)
        </li>
        <li>
        <b>CREATE_PARAMS</b> string => parameters used in creating
        the type (may be `NULL`)
        </li>
        <li>
        <b>NULLABLE</b> short => can you use NULL for this type?
        <ul>
        <li> NO_NULLS - does not allow NULL values
        </li>
        <li> NULLABLE - allows NULL values
        </li>
        <li> NULLABLE_UNKNOWN - nullability unknown
        </li>
        </ul>
        </li>
        <li>
        <b>CASE_SENSITIVE</b> boolean=> is it case sensitive?
        </li>
        <li>
        <b>SEARCHABLE</b> short => can you use "WHERE" based on this type:
        <ul>
        <li> NONE - No support
        </li>
        <li> CHAR - Only supported with WHERE .. LIKE
        </li>
        <li> BASIC - Supported except for WHERE .. LIKE
        </li>
        <li> FULL - Supported for all WHERE ..
        </li>
        </ul>
        </li>
        <li>
        <b>UNSIGNED_ATTRIBUTE</b> boolean => is it unsigned?
        </li>
        <li>
        <b>FIXED_PREC_SCALE</b> boolean => can it be a money value?
        </li>
        <li>
        <b>AUTO_INCREMENT</b> boolean => can it be used for an
        auto-increment value?
        </li>
        <li>
        <b>LOCAL_TYPE_NAME</b> string => localized version of type name
        (may be `NULL`)
        </li>
        <li>
        <b>MINIMUM_SCALE</b> short => minimum scale supported
        </li>
        <li>
        <b>MAXIMUM_SCALE</b> short => maximum scale supported
        </li>
        <li>
        <b>SQL_DATA_TYPE</b> long => unused
        </li>
        <li>
        <b>SQL_DATETIME_SUB</b> long => unused
        </li>
        <li>
        <b>NUM_PREC_RADIX</b> long => usually 2 or 10
        </li>
        </ol>
        @returns
            each row is a SQL type description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getTypeInfo() raises (SQLException);

    /** gets a description of a table's indices and statistics. They are
        ordered by NON_UNIQUE, TYPE, INDEX_NAME, and ORDINAL_POSITION.


        <p>Each index column description has the following columns:
        </p>
        <ol>
        <li>
        <b>TABLE_CAT</b> string => table catalog (may be `NULL`)
        </li>
        <li>
        <b>TABLE_SCHEM</b> string => table schema (may be `NULL`)
        </li>
        <li>
        <b>TABLE_NAME</b> string => table name
        </li>
        <li>
        <b>NON_UNIQUE</b> boolean => Can index values be non-unique?
        `FALSE` when TYPE is tableIndexStatistic
        </li>
        <li>
        <b>INDEX_QUALIFIER</b> string => index catalog (may be `NULL`);
        `NULL` when TYPE is tableIndexStatistic
        </li>
        <li>
        <b>INDEX_NAME</b> string => index name; `NULL` when TYPE is
        tableIndexStatistic
        </li>
        <li>
        <b>TYPE</b> short => index type:
        <ul>
        <li> 0 - this identifies table statistics that are
        returned in conjunction with a table's index descriptions
        </li>
        <li> CLUSTERED - this is a clustered index
        </li>
        <li> HASHED - this is a hashed index
        </li>
        <li> OTHER - this is some other style of index
        </li>
        </ul>
        </li>
        <li>
        <b>ORDINAL_POSITION</b> short => column sequence number
        within index; zero when TYPE is tableIndexStatistic
        </li>
        <li>
        <b>COLUMN_NAME</b> string => column name; `NULL` when TYPE is
        tableIndexStatistic
        </li>
        <li>
        <b>ASC_OR_DESC</b> string => column sort sequence, "A" => ascending,
        "D" => descending, may be `NULL` if sort sequence is not supported;
        `NULL` when TYPE is tableIndexStatistic
        </li>
        <li>
        <b>CARDINALITY</b> long => When TYPE is tableIndexStatistic, then
        this is the number of rows in the table; otherwise, it is the
        number of unique values in the index.
        </li>
        <li>
        <b>PAGES</b> long => When TYPE is  tableIndexStatisic then
        this is the number of pages used for the table, otherwise it
        is the number of pages used for the current index.
        </li>
        <li>
        <b>FILTER_CONDITION</b> string => Filter condition, if any.
        (may be `NULL`)
        </li>
        </ol>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schema
            a schema name; "" retrieves those without a schema
        @param table
            the table name that exports the key
        @param unique
            when `TRUE`, return only indices for unique values; when `FALSE`, return indices regardless of whether unique or not
        @param approximate
            when `TRUE`, result is allowed to reflect approximate or out of data values; when `FALSE`, results are requested to be accurate
        @returns
            each row is an index column description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getIndexInfo([in]any catalog, [in]string schema, [in]string table,
            [in]boolean unique, [in]boolean approximate)
                    raises (SQLException);

    /** Does the database support the given result set type?
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsResultSetType([in]long setType) raises (SQLException);

    /** Does the database support the concurrency type in combination
        with the given result set type?
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @param concurrency
            defined in
            com::sun::star::sdbc::ResultSetConcurrency
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsResultSetConcurrency([in]long setType,
                                                  [in]long concurrency)
      raises (SQLException);

    /** indicates whether a result set's own updates are visible.
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean ownUpdatesAreVisible([in]long setType) raises (SQLException);

    /** indicates whether a result set's own deletes are visible.
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean ownDeletesAreVisible([in]long setType) raises (SQLException);

    /** indicates whether a result set's own inserts are visible.
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean ownInsertsAreVisible([in]long setType) raises (SQLException);

    /** indicates whether updates made by others are visible.
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean othersUpdatesAreVisible([in]long setType) raises (SQLException);

    /** indicates whether deletes made by others are visible.
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean othersDeletesAreVisible([in]long setType) raises (SQLException);

    /** indicates whether inserts made by others are visible.
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean othersInsertsAreVisible([in]long setType) raises (SQLException);

    /** indicates whether or not a visible row update can be detected by
        calling the method
        <code>XResultSet.rowUpdated</code>.
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean updatesAreDetected([in]long setType) raises (SQLException);

    /** indicates whether or not a visible row delete can be detected by
        calling com::sun::star::sdbc::XResultSet::rowDeleted().
        If deletesAreDetected()
        returns `FALSE`, then deleted rows are removed from the result set.
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean deletesAreDetected([in]long setType) raises (SQLException);

    /** indicates whether or not a visible row insert can be detected
        by calling
        com::sun::star::sdbc::XResultSet::rowInserted().()
        @param setType
            defined in
            com::sun::star::sdbc::ResultSetType
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean insertsAreDetected([in]long setType) raises (SQLException);

    /** indicates whether the driver supports batch updates.
        @returns
            `TRUE` if so
        @throws SQLException
            if a database access error occurs.
     */
    boolean supportsBatchUpdates() raises (SQLException);

    /** Gets a description of the user-defined types defined in a particular
        schema. Schema-specific UDTs may have type OBJECT, STRUCT,
        or DISTINCT.


        <p>Only types matching the catalog, schema, type name, and type
        criteria are returned. They are ordered by DATA_TYPE, TYPE_SCHEM,
        and TYPE_NAME. The type name parameter may be a fully-qualified
        name. In this case, the catalog and schemaPattern parameters are
        ignored.
        </p>
        <p>Each type description has the following columns:
        </p>
        <ol>
        <li>
        <b>TYPE_CAT</b> string => the type's catalog (may be `NULL`)
        </li>
        <li>
        <b>TYPE_SCHEM</b> string => type's schema (may be `NULL`)
        </li>
        <li>
        <b>TYPE_NAME</b> string => type name
        </li>
        <li>
        <b>CLASS_NAME</b> string => Java class name or service name
        </li>
        <li>
        <b>DATA_TYPE</b> string => type value.
        One of OBJECT, STRUCT, or DISTINCT
        </li>
        <li>
        <b>REMARKS</b> string => explanatory comment on the type
        </li>
        </ol>
        <p>
        <b>Note:</b> If the driver does not support UDTs, an empty
        result set is returned.
        </p>
        @param catalog
            a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria
        @param schemaPattern
            a schema name pattern; "" retrieves those without a schema
        @param typeNamePattern
            a type name pattern; may be a fully-qualified name
        @param types
            a list of user-named types to include (OBJECT, STRUCT, or DISTINCT)
        @returns
            each row is a type description
        @throws SQLException
            if a database access error occurs.
     */
    XResultSet getUDTs([in]any catalog, [in]string schemaPattern,
              [in]string typeNamePattern, [in]sequence<long> types)
      raises (SQLException);

    /** retrieves the connection that produced this metadata object.
        @returns
            the Connection object
        @throws SQLException
            if a database access error occurs.
     */
    XConnection getConnection() raises (SQLException);
};


}; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */