File: TdsCore.html

package info (click to toggle)
libjtds-java 1.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 11,248 kB
  • sloc: java: 35,541; xml: 363; makefile: 12
file content (4105 lines) | stat: -rw-r--r-- 185,371 bytes parent folder | download | duplicates (2)
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
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_21) on Sat Jun 08 12:27:46 CEST 2013 -->
<title>TdsCore (jTDS API)</title>
<meta name="date" content="2013-06-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="TdsCore (jTDS API)";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/TdsCore.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../net/sourceforge/jtds/jdbc/Tds9Test.html" title="class in net.sourceforge.jtds.jdbc"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?net/sourceforge/jtds/jdbc/TdsCore.html" target="_top">Frames</a></li>
<li><a href="TdsCore.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">net.sourceforge.jtds.jdbc</div>
<h2 title="Class TdsCore" class="title">Class TdsCore</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>net.sourceforge.jtds.jdbc.TdsCore</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">TdsCore</span>
extends java.lang.Object</pre>
<div class="block">This class implements the Sybase / Microsoft TDS protocol.
 <p>
 Implementation notes:
 <ol>
 <li>This class, together with TdsData, encapsulates all of the TDS specific logic
     required by the driver.
 <li>This is a ground up reimplementation of the TDS protocol and is rather
     simpler, and hopefully easier to understand, than the original.
 <li>The layout of the various Login packets is derived from the original code
     and freeTds work, and incorporates changes including the ability to login as a TDS 5.0 user.
 <li>All network I/O errors are trapped here, reported to the log (if active)
     and the parent Connection object is notified that the connection should be considered
     closed.
 <li>Rather than having a large number of classes one for each token, useful information
     about the current token is gathered together in the inner TdsToken class.
 <li>As the rest of the driver interfaces to this code via higher-level method calls there
     should be know need for knowledge of the TDS protocol to leak out of this class.
     It is for this reason that all the TDS Token constants are private.
 </ol></div>
<dl><dt><span class="strong">Author:</span></dt>
  <dd>Mike Hutchinson, Matt Brinkley, Alin Sinpalean, Holger Rehn, FreeTDS project</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!--   -->
</a>
<h3>Nested Class Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TableMetaData</a></strong></code>
<div class="block">Inner static class used to hold table meta data.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.TdsToken.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TdsToken</a></strong></code>
<div class="block">Inner static class used to hold information about TDS tokens read.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#_ErrorReceived">_ErrorReceived</a></strong></code>
<div class="block">flag set to <code>true</code> whenever a TDS_ERROR token is received</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private org.ietf.jgss.GSSContext</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#_gssContext">_gssContext</a></strong></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#ALTMETADATA_TOKEN">ALTMETADATA_TOKEN</a></strong></code>
<div class="block">TDS 7.0 Computed Result set column meta data token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#ASYNC_CANCEL">ASYNC_CANCEL</a></strong></code>
<div class="block">Cancel has been generated by <code>Statement.cancel()</code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#CANCEL_PKT">CANCEL_PKT</a></strong></code>
<div class="block">TDS Cancel packet.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private int[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancelMonitor">cancelMonitor</a></strong></code>
<div class="block">Synchronization monitor for <a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancelPending"><code>cancelPending</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancelPending">cancelPending</a></strong></code>
<div class="block">Indicates pending cancel that needs to be cleared.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#columns">columns</a></strong></code>
<div class="block">The array of column meta data objects for this result set.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#computedColumns">computedColumns</a></strong></code>
<div class="block">The array of column meta data objects for the computed columns of this result set.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private java.lang.Object[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#computedRowData">computedRowData</a></strong></code>
<div class="block">The array of computed column data objects in the current row.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/JtdsConnection.html" title="class in net.sourceforge.jtds.jdbc">JtdsConnection</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#connection">connection</a></strong></code>
<div class="block">The Connection object that created this object.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/Semaphore.html" title="class in net.sourceforge.jtds.jdbc">Semaphore</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#connectionLock">connectionLock</a></strong></code>
<div class="block">Mutual exclusion lock on connection.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.TdsToken.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TdsToken</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#currentToken">currentToken</a></strong></code>
<div class="block">The descriptor object for the current TDS token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DEFAULT_MIN_PKT_SIZE_TDS70">DEFAULT_MIN_PKT_SIZE_TDS70</a></strong></code>
<div class="block">Default minimum network packet size for TDS 7.0 and newer.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_CANCEL">DONE_CANCEL</a></strong></code>
<div class="block">Done: Cancel acknowledgment.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_END_OF_RESPONSE">DONE_END_OF_RESPONSE</a></strong></code>
<div class="block">Done: Response terminator (if more than one request packet is sent, each
 response is terminated by a DONE packet with this flag set).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_ERROR">DONE_ERROR</a></strong></code>
<div class="block">Done: command caused an error.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_MORE_RESULTS">DONE_MORE_RESULTS</a></strong></code>
<div class="block">Done: more results are expected.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_ROW_COUNT">DONE_ROW_COUNT</a></strong></code>
<div class="block">Done: There is a valid row count.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#EMPTY_PARAMETER_INFO">EMPTY_PARAMETER_INFO</a></strong></code>
<div class="block">Used to optimize the <a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getParameters()"><code>getParameters()</code></a> call</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#endOfResponse">endOfResponse</a></strong></code>
<div class="block">True if the server response is fully read.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#endOfResults">endOfResults</a></strong></code>
<div class="block">True if the current result set is at end of file.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#EXECUTE_SQL">EXECUTE_SQL</a></strong></code>
<div class="block">Prepare SQL using sp_executesql</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#fatalError">fatalError</a></strong></code>
<div class="block">Indicates that a fatal error has occurred and the connection will close.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#hostName">hostName</a></strong></code>
<div class="block">Name of the client host (it can take quite a while to find it out if DNS is configured incorrectly).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/ResponseStream.html" title="class in net.sourceforge.jtds.jdbc">ResponseStream</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#in">in</a></strong></code>
<div class="block">The input server response stream.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#inBatch">inBatch</a></strong></code>
<div class="block">Indicates processing a batch.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isClosed">isClosed</a></strong></code>
<div class="block">Indicates that this object is closed.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#LOGIN_PKT">LOGIN_PKT</a></strong></code>
<div class="block">TDS 4.2 or 5.0 Login packet.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#MAX_PKT_SIZE">MAX_PKT_SIZE</a></strong></code>
<div class="block">Maximum network packet size.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#messages">messages</a></strong></code>
<div class="block">The head of the diagnostic messages chain.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#MIN_PKT_SIZE">MIN_PKT_SIZE</a></strong></code>
<div class="block">Minimum network packet size.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#MSDTC_PKT">MSDTC_PKT</a></strong></code>
<div class="block">TDS MSDTC packet.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#MSLOGIN_PKT">MSLOGIN_PKT</a></strong></code>
<div class="block">TDS 7.0 Login packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#nextParam">nextParam</a></strong></code>
<div class="block">The index of the next output parameter to populate.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) byte[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#nonce">nonce</a></strong></code>
<div class="block">The nonce from an NTLM challenge packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#NTLMAUTH_PKT">NTLMAUTH_PKT</a></strong></code>
<div class="block">TDS 7.0 NTLM Authentication packet.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#ntlmAuthSSO">ntlmAuthSSO</a></strong></code>
<div class="block">Flag that indicates if logon() should try to use Windows Single Sign On using SSPI
 or Kerberos SSO via Java native GSSAPI.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) byte[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#ntlmMessage">ntlmMessage</a></strong></code>
<div class="block">NTLM authentication message.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) byte[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#ntlmTarget">ntlmTarget</a></strong></code>
<div class="block">target info for NTLM message</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/RequestStream.html" title="class in net.sourceforge.jtds.jdbc">RequestStream</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#out">out</a></strong></code>
<div class="block">The output server request stream.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#parameters">parameters</a></strong></code>
<div class="block">The array of parameter meta data objects for the current procedure call.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#PKT_HDR_LEN">PKT_HDR_LEN</a></strong></code>
<div class="block">The size of the packet header.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#PRELOGIN_PKT">PRELOGIN_PKT</a></strong></code>
<div class="block">SQL 2000 prelogin negotiation packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#PREPARE">PREPARE</a></strong></code>
<div class="block">Prepare SQL using sp_prepare and sp_execute</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#QUERY_PKT">QUERY_PKT</a></strong></code>
<div class="block">TDS 4.2 or 7.0 Query packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#REPLY_PKT">REPLY_PKT</a></strong></code>
<div class="block">TDS Reply packet.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#returnParam">returnParam</a></strong></code>
<div class="block">The return parameter meta data object for the current procedure call.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private java.lang.Integer</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#returnStatus">returnStatus</a></strong></code>
<div class="block">The stored procedure return status.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private java.lang.Object[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#rowData">rowData</a></strong></code>
<div class="block">The array of column data objects in the current row.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#RPC_PKT">RPC_PKT</a></strong></code>
<div class="block">TDS Remote Procedure Call.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#serverType">serverType</a></strong></code>
<div class="block">The make of SQL Server (Sybase/Microsoft).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/SharedSocket.html" title="class in net.sourceforge.jtds.jdbc">SharedSocket</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#socket">socket</a></strong></code>
<div class="block">The Shared network socket object.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SSL_CLIENT_FORCE_ENCRYPT">SSL_CLIENT_FORCE_ENCRYPT</a></strong></code>
<div class="block">SSL Mode - Client requested force encryption.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SSL_ENCRYPT_LOGIN">SSL_ENCRYPT_LOGIN</a></strong></code>
<div class="block">SSL Mode - Login packet must be encrypted.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SSL_NO_ENCRYPT">SSL_NO_ENCRYPT</a></strong></code>
<div class="block">SSL Mode - No server certificate installed.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SSL_SERVER_FORCE_ENCRYPT">SSL_SERVER_FORCE_ENCRYPT</a></strong></code>
<div class="block">SSL Mode - Server requested force encryption.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sslMode">sslMode</a></strong></code>
<div class="block">Indicates type of SSL connection.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static <a href="../../../../net/sourceforge/jtds/util/SSPIJNIClient.html" title="class in net.sourceforge.jtds.util">SSPIJNIClient</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sspiJNIClient">sspiJNIClient</a></strong></code>
<div class="block">A reference to ntlm.SSPIJNIClient.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_BIGINT">SYB_BIGINT</a></strong></code>
<div class="block">Sybase 15+ bigint.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_BITNULL">SYB_BITNULL</a></strong></code>
<div class="block">Sybase nullable bit type.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_DATETIME">SYB_DATETIME</a></strong></code>
<div class="block">Sybase date and time data types.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_EXTCOLINFO">SYB_EXTCOLINFO</a></strong></code>
<div class="block">Sybase extended column meta data.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_LONGDATA">SYB_LONGDATA</a></strong></code>
<div class="block">Sybase char and binary > 255.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_UNICODE">SYB_UNICODE</a></strong></code>
<div class="block">Sybase univarchar etc.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_UNITEXT">SYB_UNITEXT</a></strong></code>
<div class="block">Sybase 15+ unitext.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYBQUERY_PKT">SYBQUERY_PKT</a></strong></code>
<div class="block">TDS 5.0 Query packet.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private <a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TableMetaData</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tables">tables</a></strong></code>
<div class="block">The array of table names associated with this result.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ALTROW">TDS_ALTROW</a></strong></code>
<div class="block">TDS Computed result set data row token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_AUTH_TOKEN">TDS_AUTH_TOKEN</a></strong></code>
<div class="block">TDS 7.0 NTLM authentication challenge token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_CAP_TOKEN">TDS_CAP_TOKEN</a></strong></code>
<div class="block">TDS 5.0 capabilities token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_CLOSE_TOKEN">TDS_CLOSE_TOKEN</a></strong></code>
<div class="block">TDS 5.0 Close token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COLFMT_TOKEN">TDS_COLFMT_TOKEN</a></strong></code>
<div class="block">TDS 4.2 Column meta data token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COLINFO_TOKEN">TDS_COLINFO_TOKEN</a></strong></code>
<div class="block">TDS Cursor results column infomation token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COLNAME_TOKEN">TDS_COLNAME_TOKEN</a></strong></code>
<div class="block">TDS 4.2 Column names token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COMP_NAMES_TOKEN">TDS_COMP_NAMES_TOKEN</a></strong></code>
<div class="block">TDS Computed result set names token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COMP_RESULT_TOKEN">TDS_COMP_RESULT_TOKEN</a></strong></code>
<div class="block">TDS Computed result set token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_CONTROL_TOKEN">TDS_CONTROL_TOKEN</a></strong></code>
<div class="block">TDS control token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_DBRPC_TOKEN">TDS_DBRPC_TOKEN</a></strong></code>
<div class="block">TDS 5.0 RPC token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_DONE_TOKEN">TDS_DONE_TOKEN</a></strong></code>
<div class="block">TDS done token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_DONEINPROC_TOKEN">TDS_DONEINPROC_TOKEN</a></strong></code>
<div class="block">TDS done in procedure token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_DONEPROC_TOKEN">TDS_DONEPROC_TOKEN</a></strong></code>
<div class="block">TDS done procedure token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_CHARSET">TDS_ENV_CHARSET</a></strong></code>
<div class="block">Environment change: charset changed.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_DATABASE">TDS_ENV_DATABASE</a></strong></code>
<div class="block">Environment change: database changed.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_LANG">TDS_ENV_LANG</a></strong></code>
<div class="block">Environment change: language changed.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_LCID">TDS_ENV_LCID</a></strong></code>
<div class="block">Environment change: locale changed.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_PACKSIZE">TDS_ENV_PACKSIZE</a></strong></code>
<div class="block">Environment change: network packet size changed.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_SQLCOLLATION">TDS_ENV_SQLCOLLATION</a></strong></code>
<div class="block">Environment change: TDS 8 collation changed.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENVCHANGE_TOKEN">TDS_ENVCHANGE_TOKEN</a></strong></code>
<div class="block">TDS environment change token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ERROR_TOKEN">TDS_ERROR_TOKEN</a></strong></code>
<div class="block">TDS error result token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_INFO_TOKEN">TDS_INFO_TOKEN</a></strong></code>
<div class="block">TDS Information message token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_LANG_TOKEN">TDS_LANG_TOKEN</a></strong></code>
<div class="block">TDS 5.0 Language token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_LOGINACK_TOKEN">TDS_LOGINACK_TOKEN</a></strong></code>
<div class="block">TDS Login acknowledgement token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_MSG50_TOKEN">TDS_MSG50_TOKEN</a></strong></code>
<div class="block">TDS 5.0 message token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_OFFSETS_TOKEN">TDS_OFFSETS_TOKEN</a></strong></code>
<div class="block">TDS DBLIB Offsets token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ORDER_TOKEN">TDS_ORDER_TOKEN</a></strong></code>
<div class="block">TDS Order by columns token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_PARAM_TOKEN">TDS_PARAM_TOKEN</a></strong></code>
<div class="block">TDS Output parameter value token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_PROCID">TDS_PROCID</a></strong></code>
<div class="block">TDS Procedure ID token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_RESULT_TOKEN">TDS_RESULT_TOKEN</a></strong></code>
<div class="block">TDS 5.0 Result set column meta data token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_RETURNSTATUS_TOKEN">TDS_RETURNSTATUS_TOKEN</a></strong></code>
<div class="block">TDS Procedure call return status token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ROW_TOKEN">TDS_ROW_TOKEN</a></strong></code>
<div class="block">TDS Result set data row token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_TABNAME_TOKEN">TDS_TABNAME_TOKEN</a></strong></code>
<div class="block">TDS Table name token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_DYNAMIC_TOKEN">TDS5_DYNAMIC_TOKEN</a></strong></code>
<div class="block">TDS 5.0 Dynamic SQL token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_PARAMFMT_TOKEN">TDS5_PARAMFMT_TOKEN</a></strong></code>
<div class="block">TDS 5.0 parameter descriptor token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_PARAMFMT2_TOKEN">TDS5_PARAMFMT2_TOKEN</a></strong></code>
<div class="block">TDS 5.0 Parameter format token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_PARAMS_TOKEN">TDS5_PARAMS_TOKEN</a></strong></code>
<div class="block">TDS 5.0 parameter value token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_WIDE_RESULT">TDS5_WIDE_RESULT</a></strong></code>
<div class="block">TSD 5.0 Wide result set token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS7_RESULT_TOKEN">TDS7_RESULT_TOKEN</a></strong></code>
<div class="block">TDS 7.0 Result set column meta data token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static java.util.HashMap</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds8SpNames">tds8SpNames</a></strong></code>
<div class="block">Map of system stored procedures that have shortcuts in TDS8.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsVersion">tdsVersion</a></strong></code>
<div class="block">The TDS version being supported by this connection.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TEMPORARY_STORED_PROCEDURES">TEMPORARY_STORED_PROCEDURES</a></strong></code>
<div class="block">Prepare SQL using temporary stored procedures</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TIMEOUT_CANCEL">TIMEOUT_CANCEL</a></strong></code>
<div class="block">Cancel has been generated by a query timeout.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#UNPREPARED">UNPREPARED</a></strong></code>
<div class="block">Do not prepare SQL</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TdsCore(net.sourceforge.jtds.jdbc.JtdsConnection, net.sourceforge.jtds.jdbc.SQLDiagnostic)">TdsCore</a></strong>(<a href="../../../../net/sourceforge/jtds/jdbc/JtdsConnection.html" title="class in net.sourceforge.jtds.jdbc">JtdsConnection</a>&nbsp;connection,
       <a href="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</a>&nbsp;messages)</code>
<div class="block">Construct a TdsCore object.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancel(boolean)">cancel</a></strong>(boolean&nbsp;timeout)</code>
<div class="block">Send (only) one cancel packet to the server.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#checkOpen()">checkOpen</a></strong>()</code>
<div class="block">Check that the connection is still open.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cleanUp()">cleanUp</a></strong>()</code>
<div class="block">Releases parameter and result set data and metadata to free up memory.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#clearResponseQueue()">clearResponseQueue</a></strong>()</code>
<div class="block">Empty the server response queue.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#close()">close</a></strong>()</code>
<div class="block">Close the <code>TdsCore</code> connection object and associated streams.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#closeConnection()">closeConnection</a></strong>()</code>
<div class="block">Inform the server that this connection is closing.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#consumeOneResponse()">consumeOneResponse</a></strong>()</code>
<div class="block">Consume packets from the server response queue up to (and including) the
 first response terminator.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private byte[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#createGssToken()">createGssToken</a></strong>()</code>
<div class="block">Initializes the GSS context and creates the initial token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) byte[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#enlistConnection(int, byte[])">enlistConnection</a></strong>(int&nbsp;type,
                byte[]&nbsp;oleTranID)</code>
<div class="block">Enlist the current connection in a distributed transaction or request the location of the
 MSDTC instance controlling the server we are connected to.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#executeSQL(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, int, int, int, boolean)">executeSQL</a></strong>(java.lang.String&nbsp;sql,
          java.lang.String&nbsp;procName,
          <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;parameters,
          boolean&nbsp;noMetaData,
          int&nbsp;timeOut,
          int&nbsp;maxRows,
          int&nbsp;maxFieldSize,
          boolean&nbsp;sendNow)</code>
<div class="block">Send an SQL statement with optional parameters to the server.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#executeSQL42(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, boolean)">executeSQL42</a></strong>(java.lang.String&nbsp;sql,
            java.lang.String&nbsp;procName,
            <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;parameters,
            boolean&nbsp;noMetaData,
            boolean&nbsp;sendNow)</code>
<div class="block">Execute SQL using TDS 4.2 protocol.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#executeSQL50(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[])">executeSQL50</a></strong>(java.lang.String&nbsp;sql,
            java.lang.String&nbsp;procName,
            <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;parameters)</code>
<div class="block">Execute SQL using TDS 5.0 protocol.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#executeSQL70(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, boolean)">executeSQL70</a></strong>(java.lang.String&nbsp;sql,
            java.lang.String&nbsp;procName,
            <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;parameters,
            boolean&nbsp;noMetaData,
            boolean&nbsp;sendNow)</code>
<div class="block">Execute SQL using TDS 7.0 protocol.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) java.sql.SQLException</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getBatchCounts(java.util.ArrayList, java.sql.SQLException)">getBatchCounts</a></strong>(java.util.ArrayList&nbsp;counts,
              java.sql.SQLException&nbsp;sqlEx)</code>
<div class="block">Obtain the counts from a batch of SQL updates.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) <a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getColumns()">getColumns</a></strong>()</code>
<div class="block">Retrieve the current result set column descriptors.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) <a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getComputedColumns()">getComputedColumns</a></strong>()</code>
<div class="block"> Retrieve the current computed result set column descriptors, if any.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) java.lang.Object[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getComputedRowData()">getComputedRowData</a></strong>()</code>
<div class="block"> Retrieve <b>and clear</b> the current computed result set data items,
 if any.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getHostName()">getHostName</a></strong>()</code>
<div class="block">Tries to figure out what client name we should identify ourselves as.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getIntFromBuffer(byte[], int)">getIntFromBuffer</a></strong>(byte[]&nbsp;buf,
                int&nbsp;offset)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static byte[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getMACAddress(java.lang.String)">getMACAddress</a></strong>(java.lang.String&nbsp;macString)</code>
<div class="block">Converts a user supplied MAC address into a byte array.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</a></code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getMessages()">getMessages</a></strong>()</code>
<div class="block">Returns the diagnostic chain for this instance.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getMoreResults()">getMoreResults</a></strong>()</code>
<div class="block">Get the next result set or update count from the TDS stream.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getNextRow()">getNextRow</a></strong>()</code>
<div class="block">Retrieve the next data row from the result set.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getParameters()">getParameters</a></strong>()</code>
<div class="block">Retrieve the parameter meta data from a Sybase prepare.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) java.lang.Integer</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getReturnStatus()">getReturnStatus</a></strong>()</code>
<div class="block">Retrieve the return status for the current stored procedure.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) java.lang.Object[]</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getRowData()">getRowData</a></strong>()</code>
<div class="block">Retrieve the current result set data items.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private static int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getShortFromBuffer(byte[], int)">getShortFromBuffer</a></strong>(byte[]&nbsp;buf,
                  int&nbsp;offset)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getTdsVersion()">getTdsVersion</a></strong>()</code>
<div class="block">Retrieve the TDS protocol version.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getUpdateCount()">getUpdateCount</a></strong>()</code>
<div class="block">Retrieve the update count from the current TDS token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isDataInResultSet()">isDataInResultSet</a></strong>()</code>
<div class="block"> Retrieve the status of result set.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isEndOfResponse()">isEndOfResponse</a></strong>()</code>
<div class="block">Retrieve the status of the response stream.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isPreparedProcedureName(java.lang.String)">isPreparedProcedureName</a></strong>(java.lang.String&nbsp;procName)</code>
<div class="block">Returns <code>true</code> if the specified <code>procName</code>
 is a sp_prepare or sp_prepexec handle; returns <code>false</code>
 otherwise.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isResultSet()">isResultSet</a></strong>()</code>
<div class="block">Retrieve the status of the next result item.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isRowData()">isRowData</a></strong>()</code>
<div class="block">Retrieve the status of the next result item.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isUpdateCount()">isUpdateCount</a></strong>()</code>
<div class="block">Retrieve the status of the next result item.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) static boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isWindowsOS()">isWindowsOS</a></strong>()</code>
<div class="block"> Checks whether the <code>os.name</code> system property contains
 "windows".</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#login(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int)">login</a></strong>(java.lang.String&nbsp;serverName,
     java.lang.String&nbsp;database,
     java.lang.String&nbsp;user,
     java.lang.String&nbsp;password,
     java.lang.String&nbsp;domain,
     java.lang.String&nbsp;charset,
     java.lang.String&nbsp;appName,
     java.lang.String&nbsp;progName,
     java.lang.String&nbsp;wsid,
     java.lang.String&nbsp;language,
     java.lang.String&nbsp;macAddress,
     int&nbsp;packetSize)</code>
<div class="block">Login to the SQL Server.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#microsoftPrepare(java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, int, int)">microsoftPrepare</a></strong>(java.lang.String&nbsp;sql,
                <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;params,
                boolean&nbsp;needCursor,
                int&nbsp;resultSetType,
                int&nbsp;resultSetConcurrency)</code>
<div class="block">Prepares the SQL for use with Microsoft server.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#negotiateSSL(java.lang.String, java.lang.String)">negotiateSSL</a></strong>(java.lang.String&nbsp;instance,
            java.lang.String&nbsp;ssl)</code>
<div class="block">Negotiate SSL settings with SQL 2000+ server.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#nextToken()">nextToken</a></strong>()</code>
<div class="block">Read the next TDS token from the response stream.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#putLoginString(java.lang.String, int)">putLoginString</a></strong>(java.lang.String&nbsp;txt,
              int&nbsp;len)</code>
<div class="block">Write a TDS login packet string.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private int</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#readPreLoginPacket()">readPreLoginPacket</a></strong>()</code>
<div class="block">Process the pre login acknowledgment from the server.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#send42LoginPkt(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int)">send42LoginPkt</a></strong>(java.lang.String&nbsp;serverName,
              java.lang.String&nbsp;user,
              java.lang.String&nbsp;password,
              java.lang.String&nbsp;charset,
              java.lang.String&nbsp;appName,
              java.lang.String&nbsp;progName,
              java.lang.String&nbsp;wsid,
              java.lang.String&nbsp;language,
              int&nbsp;packetSize)</code>
<div class="block">TDS 4.2 Login Packet.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#send50LoginPkt(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int)">send50LoginPkt</a></strong>(java.lang.String&nbsp;serverName,
              java.lang.String&nbsp;user,
              java.lang.String&nbsp;password,
              java.lang.String&nbsp;charset,
              java.lang.String&nbsp;appName,
              java.lang.String&nbsp;progName,
              java.lang.String&nbsp;wsid,
              java.lang.String&nbsp;language,
              int&nbsp;packetSize)</code>
<div class="block">TDS 5.0 Login Packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sendGssToken()">sendGssToken</a></strong>()</code>
<div class="block">Send the next GSS authentication token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sendMSLoginPkt(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int)">sendMSLoginPkt</a></strong>(java.lang.String&nbsp;serverName,
              java.lang.String&nbsp;database,
              java.lang.String&nbsp;user,
              java.lang.String&nbsp;password,
              java.lang.String&nbsp;domain,
              java.lang.String&nbsp;appName,
              java.lang.String&nbsp;progName,
              java.lang.String&nbsp;wsid,
              java.lang.String&nbsp;language,
              java.lang.String&nbsp;macAddress,
              int&nbsp;netPacketSize)</code>
<div class="block">Send a TDS 7 login packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sendNtlmChallengeResponse(java.lang.String, java.lang.String, java.lang.String)">sendNtlmChallengeResponse</a></strong>(java.lang.String&nbsp;user,
                         java.lang.String&nbsp;password,
                         java.lang.String&nbsp;domain)</code>
<div class="block">Send the response to the NTLM authentication challenge.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sendPreLoginPacket(java.lang.String, boolean)">sendPreLoginPacket</a></strong>(java.lang.String&nbsp;instance,
                  boolean&nbsp;forceEncryption)</code>
<div class="block">Send the SQL Server 2000 pre login packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#setColumns(net.sourceforge.jtds.jdbc.ColInfo[])">setColumns</a></strong>(<a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[]&nbsp;columns)</code>
<div class="block">Sets the column meta data.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#setRowCountAndTextSize(int, int)">setRowCountAndTextSize</a></strong>(int&nbsp;rowCount,
                      int&nbsp;textSize)</code>
<div class="block">Sets the server row count (to limit the number of rows in a result set)
 and text size (to limit the size of returned TEXT/NTEXT fields).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#startBatch()">startBatch</a></strong>()</code>
<div class="block">Notifies the <code>TdsCore</code> that a batch is starting.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#submitSQL(java.lang.String)">submitSQL</a></strong>(java.lang.String&nbsp;sql)</code>
<div class="block">Submit a simple SQL statement to the server and process all output.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sybasePrepare(java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[])">sybasePrepare</a></strong>(java.lang.String&nbsp;sql,
             <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;params)</code>
<div class="block">Creates a light weight stored procedure on a Sybase server.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sybaseUnPrepare(java.lang.String)">sybaseUnPrepare</a></strong>(java.lang.String&nbsp;procName)</code>
<div class="block">Drops a Sybase temporary stored procedure.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds4ColFormatToken()">tds4ColFormatToken</a></strong>()</code>
<div class="block">Process a TDS 4.2 column format token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds4ColNamesToken()">tds4ColNamesToken</a></strong>()</code>
<div class="block">Process a TDS 4.2 column names token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5DynamicToken()">tds5DynamicToken</a></strong>()</code>
<div class="block">Process TDS5 dynamic SQL aknowledgements.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ErrorToken()">tds5ErrorToken</a></strong>()</code>
<div class="block">Process a TDS 5 error or informational message.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ParamFmt2Token()">tds5ParamFmt2Token</a></strong>()</code>
<div class="block">Process TDS 5 Sybase 12+ Dynamic results parameter descriptor.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ParamFmtToken()">tds5ParamFmtToken</a></strong>()</code>
<div class="block">Process TDS 5 Dynamic results parameter descriptors.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ParamsToken()">tds5ParamsToken</a></strong>()</code>
<div class="block">Process TDS 5.0 Params Token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ResultToken()">tds5ResultToken</a></strong>()</code>
<div class="block">Process a TDS 5.0 result set packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5WideResultToken()">tds5WideResultToken</a></strong>()</code>
<div class="block">Process Sybase 12+ wide result token which provides enhanced
 column meta data.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds7CryptPass(java.lang.String)">tds7CryptPass</a></strong>(java.lang.String&nbsp;pw)</code>
<div class="block">A <B>very</B> poor man's "encryption".</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds7ResultToken()">tds7ResultToken</a></strong>()</code>
<div class="block">Process a TDS 7.0 result set token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsCapabilityToken()">tdsCapabilityToken</a></strong>()</code>
<div class="block">Processes a TDS 5.0 capability token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsColumnInfoToken()">tdsColumnInfoToken</a></strong>()</code>
<div class="block">Process a column infomation token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsComputedResultToken()">tdsComputedResultToken</a></strong>()</code>
<div class="block"> Process meta data for the computed result set complementing the
 current result set.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsComputedRowToken()">tdsComputedRowToken</a></strong>()</code>
<div class="block"> Process computed row data.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsControlToken()">tdsControlToken</a></strong>()</code>
<div class="block">Process a control token (function unknown).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsDoneToken()">tdsDoneToken</a></strong>()</code>
<div class="block">Process a DONE, DONEINPROC or DONEPROC token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsEnvChangeToken()">tdsEnvChangeToken</a></strong>()</code>
<div class="block">Process an environment change packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsErrorToken()">tdsErrorToken</a></strong>()</code>
<div class="block">Process a TD4/TDS7 error or informational message.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsGssToken()">tdsGssToken</a></strong>()</code>
<div class="block">Receive a GSS token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsInvalidToken()">tdsInvalidToken</a></strong>()</code>
<div class="block">Report unsupported TDS token in input stream.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsLoginAckToken()">tdsLoginAckToken</a></strong>()</code>
<div class="block">Process a login acknowledgement packet.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsNtlmAuthToken()">tdsNtlmAuthToken</a></strong>()</code>
<div class="block">Process a NTLM Authentication challenge.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsOffsetsToken()">tdsOffsetsToken</a></strong>()</code>
<div class="block">Process offsets token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsOrderByToken()">tdsOrderByToken</a></strong>()</code>
<div class="block">Process an order by token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsOutputParamToken()">tdsOutputParamToken</a></strong>()</code>
<div class="block">Process output parameters.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsProcIdToken()">tdsProcIdToken</a></strong>()</code>
<div class="block">Process procedure ID token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsReturnStatusToken()">tdsReturnStatusToken</a></strong>()</code>
<div class="block">Process stored procedure return status token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsRowToken()">tdsRowToken</a></strong>()</code>
<div class="block">Process a row data token.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsTableNameToken()">tdsTableNameToken</a></strong>()</code>
<div class="block">Process a table name token.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private void</code></td>
<td class="colLast"><code><strong><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#wait(int)">wait</a></strong>(int&nbsp;timeOut)</code>
<div class="block">Waits for the first byte of the server response.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="MIN_PKT_SIZE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MIN_PKT_SIZE</h4>
<pre>public static final&nbsp;int MIN_PKT_SIZE</pre>
<div class="block">Minimum network packet size.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.MIN_PKT_SIZE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DEFAULT_MIN_PKT_SIZE_TDS70">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEFAULT_MIN_PKT_SIZE_TDS70</h4>
<pre>public static final&nbsp;int DEFAULT_MIN_PKT_SIZE_TDS70</pre>
<div class="block">Default minimum network packet size for TDS 7.0 and newer.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DEFAULT_MIN_PKT_SIZE_TDS70">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MAX_PKT_SIZE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MAX_PKT_SIZE</h4>
<pre>public static final&nbsp;int MAX_PKT_SIZE</pre>
<div class="block">Maximum network packet size.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.MAX_PKT_SIZE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="PKT_HDR_LEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PKT_HDR_LEN</h4>
<pre>public static final&nbsp;int PKT_HDR_LEN</pre>
<div class="block">The size of the packet header.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.PKT_HDR_LEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="QUERY_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>QUERY_PKT</h4>
<pre>public static final&nbsp;byte QUERY_PKT</pre>
<div class="block">TDS 4.2 or 7.0 Query packet.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.QUERY_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="LOGIN_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LOGIN_PKT</h4>
<pre>public static final&nbsp;byte LOGIN_PKT</pre>
<div class="block">TDS 4.2 or 5.0 Login packet.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.LOGIN_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="RPC_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>RPC_PKT</h4>
<pre>public static final&nbsp;byte RPC_PKT</pre>
<div class="block">TDS Remote Procedure Call.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.RPC_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="REPLY_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>REPLY_PKT</h4>
<pre>public static final&nbsp;byte REPLY_PKT</pre>
<div class="block">TDS Reply packet.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.REPLY_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="CANCEL_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CANCEL_PKT</h4>
<pre>public static final&nbsp;byte CANCEL_PKT</pre>
<div class="block">TDS Cancel packet.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.CANCEL_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MSDTC_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MSDTC_PKT</h4>
<pre>public static final&nbsp;byte MSDTC_PKT</pre>
<div class="block">TDS MSDTC packet.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.MSDTC_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYBQUERY_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYBQUERY_PKT</h4>
<pre>public static final&nbsp;byte SYBQUERY_PKT</pre>
<div class="block">TDS 5.0 Query packet.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYBQUERY_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MSLOGIN_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MSLOGIN_PKT</h4>
<pre>public static final&nbsp;byte MSLOGIN_PKT</pre>
<div class="block">TDS 7.0 Login packet.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.MSLOGIN_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NTLMAUTH_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NTLMAUTH_PKT</h4>
<pre>public static final&nbsp;byte NTLMAUTH_PKT</pre>
<div class="block">TDS 7.0 NTLM Authentication packet.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.NTLMAUTH_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="PRELOGIN_PKT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PRELOGIN_PKT</h4>
<pre>public static final&nbsp;byte PRELOGIN_PKT</pre>
<div class="block">SQL 2000 prelogin negotiation packet.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.PRELOGIN_PKT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SSL_ENCRYPT_LOGIN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SSL_ENCRYPT_LOGIN</h4>
<pre>public static final&nbsp;int SSL_ENCRYPT_LOGIN</pre>
<div class="block">SSL Mode - Login packet must be encrypted.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SSL_ENCRYPT_LOGIN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SSL_CLIENT_FORCE_ENCRYPT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SSL_CLIENT_FORCE_ENCRYPT</h4>
<pre>public static final&nbsp;int SSL_CLIENT_FORCE_ENCRYPT</pre>
<div class="block">SSL Mode - Client requested force encryption.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SSL_CLIENT_FORCE_ENCRYPT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SSL_NO_ENCRYPT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SSL_NO_ENCRYPT</h4>
<pre>public static final&nbsp;int SSL_NO_ENCRYPT</pre>
<div class="block">SSL Mode - No server certificate installed.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SSL_NO_ENCRYPT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SSL_SERVER_FORCE_ENCRYPT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SSL_SERVER_FORCE_ENCRYPT</h4>
<pre>public static final&nbsp;int SSL_SERVER_FORCE_ENCRYPT</pre>
<div class="block">SSL Mode - Server requested force encryption.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SSL_SERVER_FORCE_ENCRYPT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS5_PARAMFMT2_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS5_PARAMFMT2_TOKEN</h4>
<pre>private static final&nbsp;byte TDS5_PARAMFMT2_TOKEN</pre>
<div class="block">TDS 5.0 Parameter format token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_PARAMFMT2_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_LANG_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_LANG_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_LANG_TOKEN</pre>
<div class="block">TDS 5.0 Language token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_LANG_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS5_WIDE_RESULT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS5_WIDE_RESULT</h4>
<pre>private static final&nbsp;byte TDS5_WIDE_RESULT</pre>
<div class="block">TSD 5.0 Wide result set token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_WIDE_RESULT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_CLOSE_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_CLOSE_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_CLOSE_TOKEN</pre>
<div class="block">TDS 5.0 Close token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_CLOSE_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_OFFSETS_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_OFFSETS_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_OFFSETS_TOKEN</pre>
<div class="block">TDS DBLIB Offsets token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_OFFSETS_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_RETURNSTATUS_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_RETURNSTATUS_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_RETURNSTATUS_TOKEN</pre>
<div class="block">TDS Procedure call return status token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_RETURNSTATUS_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_PROCID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_PROCID</h4>
<pre>private static final&nbsp;byte TDS_PROCID</pre>
<div class="block">TDS Procedure ID token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_PROCID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS7_RESULT_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS7_RESULT_TOKEN</h4>
<pre>private static final&nbsp;byte TDS7_RESULT_TOKEN</pre>
<div class="block">TDS 7.0 Result set column meta data token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS7_RESULT_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ALTMETADATA_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ALTMETADATA_TOKEN</h4>
<pre>private static final&nbsp;byte ALTMETADATA_TOKEN</pre>
<div class="block">TDS 7.0 Computed Result set column meta data token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.ALTMETADATA_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_COLNAME_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_COLNAME_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_COLNAME_TOKEN</pre>
<div class="block">TDS 4.2 Column names token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COLNAME_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_COLFMT_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_COLFMT_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_COLFMT_TOKEN</pre>
<div class="block">TDS 4.2 Column meta data token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COLFMT_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_TABNAME_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_TABNAME_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_TABNAME_TOKEN</pre>
<div class="block">TDS Table name token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_TABNAME_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_COLINFO_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_COLINFO_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_COLINFO_TOKEN</pre>
<div class="block">TDS Cursor results column infomation token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COLINFO_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_COMP_NAMES_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_COMP_NAMES_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_COMP_NAMES_TOKEN</pre>
<div class="block">TDS Computed result set names token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COMP_NAMES_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_COMP_RESULT_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_COMP_RESULT_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_COMP_RESULT_TOKEN</pre>
<div class="block">TDS Computed result set token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COMP_RESULT_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ORDER_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ORDER_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_ORDER_TOKEN</pre>
<div class="block">TDS Order by columns token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ORDER_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ERROR_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ERROR_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_ERROR_TOKEN</pre>
<div class="block">TDS error result token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ERROR_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_INFO_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_INFO_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_INFO_TOKEN</pre>
<div class="block">TDS Information message token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_INFO_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_PARAM_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_PARAM_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_PARAM_TOKEN</pre>
<div class="block">TDS Output parameter value token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_PARAM_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_LOGINACK_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_LOGINACK_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_LOGINACK_TOKEN</pre>
<div class="block">TDS Login acknowledgement token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_LOGINACK_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_CONTROL_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_CONTROL_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_CONTROL_TOKEN</pre>
<div class="block">TDS control token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_CONTROL_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ROW_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ROW_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_ROW_TOKEN</pre>
<div class="block">TDS Result set data row token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ROW_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ALTROW">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ALTROW</h4>
<pre>private static final&nbsp;byte TDS_ALTROW</pre>
<div class="block">TDS Computed result set data row token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ALTROW">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS5_PARAMS_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS5_PARAMS_TOKEN</h4>
<pre>private static final&nbsp;byte TDS5_PARAMS_TOKEN</pre>
<div class="block">TDS 5.0 parameter value token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_PARAMS_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_CAP_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_CAP_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_CAP_TOKEN</pre>
<div class="block">TDS 5.0 capabilities token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_CAP_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ENVCHANGE_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ENVCHANGE_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_ENVCHANGE_TOKEN</pre>
<div class="block">TDS environment change token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENVCHANGE_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_MSG50_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_MSG50_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_MSG50_TOKEN</pre>
<div class="block">TDS 5.0 message token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_MSG50_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_DBRPC_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_DBRPC_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_DBRPC_TOKEN</pre>
<div class="block">TDS 5.0 RPC token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_DBRPC_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS5_DYNAMIC_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS5_DYNAMIC_TOKEN</h4>
<pre>private static final&nbsp;byte TDS5_DYNAMIC_TOKEN</pre>
<div class="block">TDS 5.0 Dynamic SQL token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_DYNAMIC_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS5_PARAMFMT_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS5_PARAMFMT_TOKEN</h4>
<pre>private static final&nbsp;byte TDS5_PARAMFMT_TOKEN</pre>
<div class="block">TDS 5.0 parameter descriptor token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_PARAMFMT_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_AUTH_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_AUTH_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_AUTH_TOKEN</pre>
<div class="block">TDS 7.0 NTLM authentication challenge token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_AUTH_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_RESULT_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_RESULT_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_RESULT_TOKEN</pre>
<div class="block">TDS 5.0 Result set column meta data token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_RESULT_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_DONE_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_DONE_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_DONE_TOKEN</pre>
<div class="block">TDS done token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_DONE_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_DONEPROC_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_DONEPROC_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_DONEPROC_TOKEN</pre>
<div class="block">TDS done procedure token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_DONEPROC_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_DONEINPROC_TOKEN">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_DONEINPROC_TOKEN</h4>
<pre>private static final&nbsp;byte TDS_DONEINPROC_TOKEN</pre>
<div class="block">TDS done in procedure token.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_DONEINPROC_TOKEN">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ENV_DATABASE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ENV_DATABASE</h4>
<pre>private static final&nbsp;byte TDS_ENV_DATABASE</pre>
<div class="block">Environment change: database changed.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_DATABASE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ENV_LANG">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ENV_LANG</h4>
<pre>private static final&nbsp;byte TDS_ENV_LANG</pre>
<div class="block">Environment change: language changed.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_LANG">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ENV_CHARSET">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ENV_CHARSET</h4>
<pre>private static final&nbsp;byte TDS_ENV_CHARSET</pre>
<div class="block">Environment change: charset changed.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_CHARSET">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ENV_PACKSIZE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ENV_PACKSIZE</h4>
<pre>private static final&nbsp;byte TDS_ENV_PACKSIZE</pre>
<div class="block">Environment change: network packet size changed.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_PACKSIZE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ENV_LCID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ENV_LCID</h4>
<pre>private static final&nbsp;byte TDS_ENV_LCID</pre>
<div class="block">Environment change: locale changed.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_LCID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TDS_ENV_SQLCOLLATION">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TDS_ENV_SQLCOLLATION</h4>
<pre>private static final&nbsp;byte TDS_ENV_SQLCOLLATION</pre>
<div class="block">Environment change: TDS 8 collation changed.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_SQLCOLLATION">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="EMPTY_PARAMETER_INFO">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EMPTY_PARAMETER_INFO</h4>
<pre>private static final&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[] EMPTY_PARAMETER_INFO</pre>
<div class="block">Used to optimize the <a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getParameters()"><code>getParameters()</code></a> call</div>
</li>
</ul>
<a name="DONE_MORE_RESULTS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DONE_MORE_RESULTS</h4>
<pre>private static final&nbsp;byte DONE_MORE_RESULTS</pre>
<div class="block">Done: more results are expected.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_MORE_RESULTS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DONE_ERROR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DONE_ERROR</h4>
<pre>private static final&nbsp;byte DONE_ERROR</pre>
<div class="block">Done: command caused an error.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_ERROR">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DONE_ROW_COUNT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DONE_ROW_COUNT</h4>
<pre>private static final&nbsp;byte DONE_ROW_COUNT</pre>
<div class="block">Done: There is a valid row count.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_ROW_COUNT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DONE_CANCEL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DONE_CANCEL</h4>
<pre>static final&nbsp;byte DONE_CANCEL</pre>
<div class="block">Done: Cancel acknowledgment.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_CANCEL">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DONE_END_OF_RESPONSE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DONE_END_OF_RESPONSE</h4>
<pre>private static final&nbsp;byte DONE_END_OF_RESPONSE</pre>
<div class="block">Done: Response terminator (if more than one request packet is sent, each
 response is terminated by a DONE packet with this flag set).</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_END_OF_RESPONSE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="UNPREPARED">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>UNPREPARED</h4>
<pre>public static final&nbsp;int UNPREPARED</pre>
<div class="block">Do not prepare SQL</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.UNPREPARED">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TEMPORARY_STORED_PROCEDURES">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TEMPORARY_STORED_PROCEDURES</h4>
<pre>public static final&nbsp;int TEMPORARY_STORED_PROCEDURES</pre>
<div class="block">Prepare SQL using temporary stored procedures</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TEMPORARY_STORED_PROCEDURES">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="EXECUTE_SQL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EXECUTE_SQL</h4>
<pre>public static final&nbsp;int EXECUTE_SQL</pre>
<div class="block">Prepare SQL using sp_executesql</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.EXECUTE_SQL">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="PREPARE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PREPARE</h4>
<pre>public static final&nbsp;int PREPARE</pre>
<div class="block">Prepare SQL using sp_prepare and sp_execute</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.PREPARE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYB_LONGDATA">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYB_LONGDATA</h4>
<pre>static final&nbsp;int SYB_LONGDATA</pre>
<div class="block">Sybase char and binary > 255.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_LONGDATA">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYB_DATETIME">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYB_DATETIME</h4>
<pre>static final&nbsp;int SYB_DATETIME</pre>
<div class="block">Sybase date and time data types.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_DATETIME">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYB_BITNULL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYB_BITNULL</h4>
<pre>static final&nbsp;int SYB_BITNULL</pre>
<div class="block">Sybase nullable bit type.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_BITNULL">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYB_EXTCOLINFO">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYB_EXTCOLINFO</h4>
<pre>static final&nbsp;int SYB_EXTCOLINFO</pre>
<div class="block">Sybase extended column meta data.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_EXTCOLINFO">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYB_UNICODE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYB_UNICODE</h4>
<pre>static final&nbsp;int SYB_UNICODE</pre>
<div class="block">Sybase univarchar etc.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_UNICODE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYB_UNITEXT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYB_UNITEXT</h4>
<pre>static final&nbsp;int SYB_UNITEXT</pre>
<div class="block">Sybase 15+ unitext.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_UNITEXT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYB_BIGINT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYB_BIGINT</h4>
<pre>static final&nbsp;int SYB_BIGINT</pre>
<div class="block">Sybase 15+ bigint.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_BIGINT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ASYNC_CANCEL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ASYNC_CANCEL</h4>
<pre>private static final&nbsp;int ASYNC_CANCEL</pre>
<div class="block">Cancel has been generated by <code>Statement.cancel()</code>.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.ASYNC_CANCEL">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="TIMEOUT_CANCEL">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TIMEOUT_CANCEL</h4>
<pre>private static final&nbsp;int TIMEOUT_CANCEL</pre>
<div class="block">Cancel has been generated by a query timeout.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TIMEOUT_CANCEL">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="tds8SpNames">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds8SpNames</h4>
<pre>private static&nbsp;java.util.HashMap tds8SpNames</pre>
<div class="block">Map of system stored procedures that have shortcuts in TDS8.</div>
</li>
</ul>
<a name="hostName">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hostName</h4>
<pre>private static&nbsp;java.lang.String hostName</pre>
<div class="block">Name of the client host (it can take quite a while to find it out if DNS is configured incorrectly).</div>
</li>
</ul>
<a name="sspiJNIClient">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sspiJNIClient</h4>
<pre>private static&nbsp;<a href="../../../../net/sourceforge/jtds/util/SSPIJNIClient.html" title="class in net.sourceforge.jtds.util">SSPIJNIClient</a> sspiJNIClient</pre>
<div class="block">A reference to ntlm.SSPIJNIClient.</div>
</li>
</ul>
<a name="connection">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>connection</h4>
<pre>private final&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/JtdsConnection.html" title="class in net.sourceforge.jtds.jdbc">JtdsConnection</a> connection</pre>
<div class="block">The Connection object that created this object.</div>
</li>
</ul>
<a name="tdsVersion">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsVersion</h4>
<pre>private&nbsp;int tdsVersion</pre>
<div class="block">The TDS version being supported by this connection.</div>
</li>
</ul>
<a name="serverType">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>serverType</h4>
<pre>private final&nbsp;int serverType</pre>
<div class="block">The make of SQL Server (Sybase/Microsoft).</div>
</li>
</ul>
<a name="socket">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>socket</h4>
<pre>private final&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/SharedSocket.html" title="class in net.sourceforge.jtds.jdbc">SharedSocket</a> socket</pre>
<div class="block">The Shared network socket object.</div>
</li>
</ul>
<a name="out">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>out</h4>
<pre>private final&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/RequestStream.html" title="class in net.sourceforge.jtds.jdbc">RequestStream</a> out</pre>
<div class="block">The output server request stream.</div>
</li>
</ul>
<a name="in">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>in</h4>
<pre>private final&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/ResponseStream.html" title="class in net.sourceforge.jtds.jdbc">ResponseStream</a> in</pre>
<div class="block">The input server response stream.</div>
</li>
</ul>
<a name="endOfResponse">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>endOfResponse</h4>
<pre>private&nbsp;boolean endOfResponse</pre>
<div class="block">True if the server response is fully read.</div>
</li>
</ul>
<a name="endOfResults">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>endOfResults</h4>
<pre>private&nbsp;boolean endOfResults</pre>
<div class="block">True if the current result set is at end of file.</div>
</li>
</ul>
<a name="columns">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>columns</h4>
<pre>private&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[] columns</pre>
<div class="block">The array of column meta data objects for this result set.</div>
</li>
</ul>
<a name="computedColumns">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>computedColumns</h4>
<pre>private&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[] computedColumns</pre>
<div class="block">The array of column meta data objects for the computed columns of this result set.</div>
</li>
</ul>
<a name="rowData">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>rowData</h4>
<pre>private&nbsp;java.lang.Object[] rowData</pre>
<div class="block">The array of column data objects in the current row.</div>
</li>
</ul>
<a name="computedRowData">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>computedRowData</h4>
<pre>private&nbsp;java.lang.Object[] computedRowData</pre>
<div class="block">The array of computed column data objects in the current row.</div>
</li>
</ul>
<a name="tables">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tables</h4>
<pre>private&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TableMetaData</a>[] tables</pre>
<div class="block">The array of table names associated with this result.</div>
</li>
</ul>
<a name="currentToken">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>currentToken</h4>
<pre>private final&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.TdsToken.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TdsToken</a> currentToken</pre>
<div class="block">The descriptor object for the current TDS token.</div>
</li>
</ul>
<a name="returnStatus">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>returnStatus</h4>
<pre>private&nbsp;java.lang.Integer returnStatus</pre>
<div class="block">The stored procedure return status.</div>
</li>
</ul>
<a name="returnParam">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>returnParam</h4>
<pre>private&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a> returnParam</pre>
<div class="block">The return parameter meta data object for the current procedure call.</div>
</li>
</ul>
<a name="parameters">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>parameters</h4>
<pre>private&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[] parameters</pre>
<div class="block">The array of parameter meta data objects for the current procedure call.</div>
</li>
</ul>
<a name="nextParam">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nextParam</h4>
<pre>private&nbsp;int nextParam</pre>
<div class="block">The index of the next output parameter to populate.</div>
</li>
</ul>
<a name="messages">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>messages</h4>
<pre>private final&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</a> messages</pre>
<div class="block">The head of the diagnostic messages chain.</div>
</li>
</ul>
<a name="isClosed">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isClosed</h4>
<pre>private&nbsp;boolean isClosed</pre>
<div class="block">Indicates that this object is closed.</div>
</li>
</ul>
<a name="ntlmAuthSSO">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ntlmAuthSSO</h4>
<pre>private&nbsp;boolean ntlmAuthSSO</pre>
<div class="block">Flag that indicates if logon() should try to use Windows Single Sign On using SSPI
 or Kerberos SSO via Java native GSSAPI.</div>
</li>
</ul>
<a name="fatalError">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatalError</h4>
<pre>private&nbsp;boolean fatalError</pre>
<div class="block">Indicates that a fatal error has occurred and the connection will close.</div>
</li>
</ul>
<a name="connectionLock">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>connectionLock</h4>
<pre>private&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/Semaphore.html" title="class in net.sourceforge.jtds.jdbc">Semaphore</a> connectionLock</pre>
<div class="block">Mutual exclusion lock on connection.</div>
</li>
</ul>
<a name="inBatch">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>inBatch</h4>
<pre>private&nbsp;boolean inBatch</pre>
<div class="block">Indicates processing a batch.</div>
</li>
</ul>
<a name="sslMode">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sslMode</h4>
<pre>private&nbsp;int sslMode</pre>
<div class="block">Indicates type of SSL connection.</div>
</li>
</ul>
<a name="cancelPending">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cancelPending</h4>
<pre>private&nbsp;boolean cancelPending</pre>
<div class="block">Indicates pending cancel that needs to be cleared.</div>
</li>
</ul>
<a name="cancelMonitor">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cancelMonitor</h4>
<pre>private final&nbsp;int[] cancelMonitor</pre>
<div class="block">Synchronization monitor for <a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancelPending"><code>cancelPending</code></a>.</div>
</li>
</ul>
<a name="_ErrorReceived">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>_ErrorReceived</h4>
<pre>private&nbsp;boolean _ErrorReceived</pre>
<div class="block">flag set to <code>true</code> whenever a TDS_ERROR token is received</div>
</li>
</ul>
<a name="nonce">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nonce</h4>
<pre>byte[] nonce</pre>
<div class="block">The nonce from an NTLM challenge packet.</div>
</li>
</ul>
<a name="ntlmMessage">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ntlmMessage</h4>
<pre>byte[] ntlmMessage</pre>
<div class="block">NTLM authentication message.</div>
</li>
</ul>
<a name="ntlmTarget">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ntlmTarget</h4>
<pre>byte[] ntlmTarget</pre>
<div class="block">target info for NTLM message</div>
</li>
</ul>
<a name="_gssContext">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>_gssContext</h4>
<pre>private&nbsp;org.ietf.jgss.GSSContext _gssContext</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="TdsCore(net.sourceforge.jtds.jdbc.JtdsConnection, net.sourceforge.jtds.jdbc.SQLDiagnostic)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>TdsCore</h4>
<pre>TdsCore(<a href="../../../../net/sourceforge/jtds/jdbc/JtdsConnection.html" title="class in net.sourceforge.jtds.jdbc">JtdsConnection</a>&nbsp;connection,
       <a href="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</a>&nbsp;messages)</pre>
<div class="block">Construct a TdsCore object.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>connection</code> - The connection which owns this object.</dd><dd><code>messages</code> - The SQLDiagnostic messages chain.</dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="checkOpen()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>checkOpen</h4>
<pre>private&nbsp;void&nbsp;checkOpen()
                throws java.sql.SQLException</pre>
<div class="block">Check that the connection is still open.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if the connection is closed</dd></dl>
</li>
</ul>
<a name="getTdsVersion()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTdsVersion</h4>
<pre>int&nbsp;getTdsVersion()</pre>
<div class="block">Retrieve the TDS protocol version.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The protocol version as an <code>int</code>.</dd></dl>
</li>
</ul>
<a name="getColumns()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getColumns</h4>
<pre><a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[]&nbsp;getColumns()</pre>
<div class="block">Retrieve the current result set column descriptors.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The column descriptors as a <code>ColInfo[]</code>.</dd></dl>
</li>
</ul>
<a name="setColumns(net.sourceforge.jtds.jdbc.ColInfo[])">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setColumns</h4>
<pre>void&nbsp;setColumns(<a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[]&nbsp;columns)</pre>
<div class="block">Sets the column meta data.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>columns</code> - the column descriptor array</dd></dl>
</li>
</ul>
<a name="getParameters()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getParameters</h4>
<pre><a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;getParameters()</pre>
<div class="block">Retrieve the parameter meta data from a Sybase prepare.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The parameter descriptors as a <code>ParamInfo[]</code>.</dd></dl>
</li>
</ul>
<a name="getRowData()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRowData</h4>
<pre>java.lang.Object[]&nbsp;getRowData()</pre>
<div class="block">Retrieve the current result set data items.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the row data as an <code>Object</code> array</dd></dl>
</li>
</ul>
<a name="negotiateSSL(java.lang.String, java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>negotiateSSL</h4>
<pre>void&nbsp;negotiateSSL(java.lang.String&nbsp;instance,
                java.lang.String&nbsp;ssl)
            throws java.io.IOException,
                   java.sql.SQLException</pre>
<div class="block">Negotiate SSL settings with SQL 2000+ server.
 <p/>
 Server returns the following values for SSL mode:
 <ol>
 <ll>0 = Certificate installed encrypt login packet only.
 <li>1 = Certificate installed client requests force encryption.
 <li>2 = No certificate no encryption possible.
 <li>3 = Server requests force encryption.
 </ol></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>instance</code> - The server instance name.</dd><dd><code>ssl</code> - The SSL URL property value.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="login(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>login</h4>
<pre>void&nbsp;login(java.lang.String&nbsp;serverName,
         java.lang.String&nbsp;database,
         java.lang.String&nbsp;user,
         java.lang.String&nbsp;password,
         java.lang.String&nbsp;domain,
         java.lang.String&nbsp;charset,
         java.lang.String&nbsp;appName,
         java.lang.String&nbsp;progName,
         java.lang.String&nbsp;wsid,
         java.lang.String&nbsp;language,
         java.lang.String&nbsp;macAddress,
         int&nbsp;packetSize)
     throws java.sql.SQLException</pre>
<div class="block">Login to the SQL Server.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>serverName</code> - server host name</dd><dd><code>database</code> - required database</dd><dd><code>user</code> - user name</dd><dd><code>password</code> - user password</dd><dd><code>domain</code> - Windows NT domain (or null)</dd><dd><code>charset</code> - required server character set</dd><dd><code>appName</code> - application name</dd><dd><code>progName</code> - library name</dd><dd><code>wsid</code> - workstation ID</dd><dd><code>language</code> - language to use for server messages</dd><dd><code>macAddress</code> - client network MAC address</dd><dd><code>packetSize</code> - required network packet size</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an error occurs</dd></dl>
</li>
</ul>
<a name="getMoreResults()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMoreResults</h4>
<pre>boolean&nbsp;getMoreResults()
                 throws java.sql.SQLException</pre>
<div class="block">Get the next result set or update count from the TDS stream.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>true</code> if the next item is a result set.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an I/O or protocol error occurs; server errors
                      are queued up and not thrown</dd></dl>
</li>
</ul>
<a name="isResultSet()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isResultSet</h4>
<pre>boolean&nbsp;isResultSet()</pre>
<div class="block">Retrieve the status of the next result item.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>boolean</code> true if the next item is a result set.</dd></dl>
</li>
</ul>
<a name="isRowData()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isRowData</h4>
<pre>boolean&nbsp;isRowData()</pre>
<div class="block">Retrieve the status of the next result item.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>boolean</code> true if the next item is row data.</dd></dl>
</li>
</ul>
<a name="isUpdateCount()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isUpdateCount</h4>
<pre>boolean&nbsp;isUpdateCount()</pre>
<div class="block">Retrieve the status of the next result item.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>boolean</code> true if the next item is an update count.</dd></dl>
</li>
</ul>
<a name="getUpdateCount()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUpdateCount</h4>
<pre>int&nbsp;getUpdateCount()</pre>
<div class="block">Retrieve the update count from the current TDS token.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The update count as an <code>int</code>.</dd></dl>
</li>
</ul>
<a name="isEndOfResponse()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isEndOfResponse</h4>
<pre>boolean&nbsp;isEndOfResponse()</pre>
<div class="block">Retrieve the status of the response stream.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>boolean</code> true if the response has been entirely consumed</dd></dl>
</li>
</ul>
<a name="clearResponseQueue()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clearResponseQueue</h4>
<pre>void&nbsp;clearResponseQueue()
                  throws java.sql.SQLException</pre>
<div class="block">Empty the server response queue.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an error occurs</dd></dl>
</li>
</ul>
<a name="consumeOneResponse()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>consumeOneResponse</h4>
<pre>void&nbsp;consumeOneResponse()
                  throws java.sql.SQLException</pre>
<div class="block">Consume packets from the server response queue up to (and including) the
 first response terminator.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an I/O or protocol error occurs; server errors
                      are queued up and not thrown</dd></dl>
</li>
</ul>
<a name="getNextRow()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNextRow</h4>
<pre>boolean&nbsp;getNextRow()
             throws java.sql.SQLException</pre>
<div class="block">Retrieve the next data row from the result set.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>false</code> if at the end of results, <code>true</code>
         otherwise</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an I/O or protocol error occurs; server errors
                      are queued up and not thrown</dd></dl>
</li>
</ul>
<a name="isDataInResultSet()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isDataInResultSet</h4>
<pre>boolean&nbsp;isDataInResultSet()
                    throws java.sql.SQLException</pre>
<div class="block"><p> Retrieve the status of result set. </p>

 <p> This does a quick read ahead and is needed to support method <a href="../../../../net/sourceforge/jtds/jdbc/JtdsResultSet.html#isLast()"><code>JtdsResultSet.isLast()</code></a>. </p></div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>true</code> if there is more data in the result set</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="getReturnStatus()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getReturnStatus</h4>
<pre>java.lang.Integer&nbsp;getReturnStatus()</pre>
<div class="block">Retrieve the return status for the current stored procedure.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The return status as an <code>Integer</code>.</dd></dl>
</li>
</ul>
<a name="closeConnection()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>closeConnection</h4>
<pre>void&nbsp;closeConnection()</pre>
<div class="block">Inform the server that this connection is closing.
 <p>
 Used by Sybase a no-op for Microsoft.</div>
</li>
</ul>
<a name="close()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>close</h4>
<pre>void&nbsp;close()
     throws java.sql.SQLException</pre>
<div class="block">Close the <code>TdsCore</code> connection object and associated streams.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="cancel(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cancel</h4>
<pre>void&nbsp;cancel(boolean&nbsp;timeout)</pre>
<div class="block">Send (only) one cancel packet to the server.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>timeout</code> - true if this is a query timeout cancel</dd></dl>
</li>
</ul>
<a name="submitSQL(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>submitSQL</h4>
<pre>void&nbsp;submitSQL(java.lang.String&nbsp;sql)
         throws java.sql.SQLException</pre>
<div class="block">Submit a simple SQL statement to the server and process all output.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sql</code> - the statement to execute</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an error is returned by the server</dd></dl>
</li>
</ul>
<a name="startBatch()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>startBatch</h4>
<pre>void&nbsp;startBatch()</pre>
<div class="block">Notifies the <code>TdsCore</code> that a batch is starting. This is so
 that it knows to use <code>sp_executesql</code> for parameterized
 queries (because there's no way to prepare a statement in the middle of
 a batch).
 <p>
 Sets the <a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#inBatch"><code>inBatch</code></a> flag.</div>
</li>
</ul>
<a name="executeSQL(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, int, int, int, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>executeSQL</h4>
<pre>void&nbsp;executeSQL(java.lang.String&nbsp;sql,
              java.lang.String&nbsp;procName,
              <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;parameters,
              boolean&nbsp;noMetaData,
              int&nbsp;timeOut,
              int&nbsp;maxRows,
              int&nbsp;maxFieldSize,
              boolean&nbsp;sendNow)
          throws java.sql.SQLException</pre>
<div class="block">Send an SQL statement with optional parameters to the server.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sql</code> - SQL statement to execute</dd><dd><code>procName</code> - stored procedure to execute or <code>null</code></dd><dd><code>parameters</code> - parameters for call or null</dd><dd><code>noMetaData</code> - suppress meta data for cursor calls</dd><dd><code>timeOut</code> - optional query timeout or 0</dd><dd><code>maxRows</code> - the maximum number of data rows to return (-1 to
                     leave unaltered)</dd><dd><code>maxFieldSize</code> - the maximum number of bytes in a column to return
                     (-1 to leave unaltered)</dd><dd><code>sendNow</code> - whether to send the request now or not</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an error occurs</dd></dl>
</li>
</ul>
<a name="microsoftPrepare(java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>microsoftPrepare</h4>
<pre>java.lang.String&nbsp;microsoftPrepare(java.lang.String&nbsp;sql,
                                <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;params,
                                boolean&nbsp;needCursor,
                                int&nbsp;resultSetType,
                                int&nbsp;resultSetConcurrency)
                            throws java.sql.SQLException</pre>
<div class="block">Prepares the SQL for use with Microsoft server.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sql</code> - the SQL statement to prepare.</dd><dd><code>params</code> - the actual parameter list</dd><dd><code>needCursor</code> - true if a cursorprepare is required</dd><dd><code>resultSetType</code> - value of the resultSetType parameter when
                             the Statement was created</dd><dd><code>resultSetConcurrency</code> - value of the resultSetConcurrency parameter
                             whenthe Statement was created</dd>
<dt><span class="strong">Returns:</span></dt><dd>name of the procedure or prepared statement handle.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="sybasePrepare(java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[])">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sybasePrepare</h4>
<pre>java.lang.String&nbsp;sybasePrepare(java.lang.String&nbsp;sql,
                             <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;params)
                         throws java.sql.SQLException</pre>
<div class="block">Creates a light weight stored procedure on a Sybase server.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sql</code> - SQL statement to prepare</dd><dd><code>params</code> - the actual parameter list</dd>
<dt><span class="strong">Returns:</span></dt><dd>name of the procedure</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an error occurs</dd></dl>
</li>
</ul>
<a name="sybaseUnPrepare(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sybaseUnPrepare</h4>
<pre>void&nbsp;sybaseUnPrepare(java.lang.String&nbsp;procName)
               throws java.sql.SQLException</pre>
<div class="block">Drops a Sybase temporary stored procedure.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>procName</code> - the temporary procedure name</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an error occurs</dd></dl>
</li>
</ul>
<a name="enlistConnection(int, byte[])">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enlistConnection</h4>
<pre>byte[]&nbsp;enlistConnection(int&nbsp;type,
                      byte[]&nbsp;oleTranID)
                  throws java.sql.SQLException</pre>
<div class="block">Enlist the current connection in a distributed transaction or request the location of the
 MSDTC instance controlling the server we are connected to.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>type</code> - set to 0 to request TM address or 1 to enlist connection</dd><dd><code>oleTranID</code> - the 40 OLE transaction ID</dd>
<dt><span class="strong">Returns:</span></dt><dd>a <code>byte[]</code> array containing the TM address data</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="getBatchCounts(java.util.ArrayList, java.sql.SQLException)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBatchCounts</h4>
<pre>java.sql.SQLException&nbsp;getBatchCounts(java.util.ArrayList&nbsp;counts,
                                   java.sql.SQLException&nbsp;sqlEx)
                               throws java.sql.SQLException</pre>
<div class="block">Obtain the counts from a batch of SQL updates.
 <p/>
 If an error occurs Sybase will continue processing a batch consisting of
 TDS_LANGUAGE records whilst SQL Server will usually stop after the first
 error except when the error is caused by a duplicate key.
 Sybase will also stop after the first error when executing RPC calls.
 Care is taken to ensure that <code>SQLException</code>s are chained
 because there could be several errors reported in a batch.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>counts</code> - the <code>ArrayList</code> containing the update counts</dd><dd><code>sqlEx</code> - any previous <code>SQLException</code>(s) encountered</dd>
<dt><span class="strong">Returns:</span></dt><dd>updated <code>SQLException</code> or <code>null</code> if no
         error has yet occurred</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if the connection is closed</dd></dl>
</li>
</ul>
<a name="getComputedColumns()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getComputedColumns</h4>
<pre><a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</a>[]&nbsp;getComputedColumns()</pre>
<div class="block"><p> Retrieve the current computed result set column descriptors, if any.
 </p></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>column descriptors for the computed columns as <a href="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc"><code>ColInfo</code></a> array;
    or <code>null</code> if there are no computed columns</dd></dl>
</li>
</ul>
<a name="getComputedRowData()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getComputedRowData</h4>
<pre>java.lang.Object[]&nbsp;getComputedRowData()</pre>
<div class="block"><p> Retrieve <b>and clear</b> the current computed result set data items,
 if any. </p></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the row data for the computed columns as an <code>Object</code> array; or
    <code>null</code> if there are no computed columns, computed data has not
    yet been received, or the data has already been cleared by a previous
    call to this method</dd></dl>
</li>
</ul>
<a name="putLoginString(java.lang.String, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>putLoginString</h4>
<pre>private&nbsp;void&nbsp;putLoginString(java.lang.String&nbsp;txt,
                  int&nbsp;len)
                     throws java.io.IOException</pre>
<div class="block">Write a TDS login packet string. Text followed by padding followed
 by a byte sized length.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="sendPreLoginPacket(java.lang.String, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sendPreLoginPacket</h4>
<pre>private&nbsp;void&nbsp;sendPreLoginPacket(java.lang.String&nbsp;instance,
                      boolean&nbsp;forceEncryption)
                         throws java.io.IOException</pre>
<div class="block">Send the SQL Server 2000 pre login packet.
 <p>Packet contains; netlib version, ssl mode, instance
 and process ID.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>instance</code> - </dd><dd><code>forceEncryption</code> - </dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="readPreLoginPacket()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>readPreLoginPacket</h4>
<pre>private&nbsp;int&nbsp;readPreLoginPacket()
                        throws java.io.IOException</pre>
<div class="block">Process the pre login acknowledgment from the server.
 <p>Packet contains; server version no, SSL mode, instance name
 and process id.
 <p>Server returns the following values for SSL mode:
 <ol>
 <ll>0 = Certificate installed encrypt login packet only.
 <li>1 = Certificate installed client requests force encryption.
 <li>2 = No certificate no encryption possible.
 <li>3 = Server requests force encryption.
 </ol></div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The server side SSL mode.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="send42LoginPkt(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>send42LoginPkt</h4>
<pre>private&nbsp;void&nbsp;send42LoginPkt(java.lang.String&nbsp;serverName,
                  java.lang.String&nbsp;user,
                  java.lang.String&nbsp;password,
                  java.lang.String&nbsp;charset,
                  java.lang.String&nbsp;appName,
                  java.lang.String&nbsp;progName,
                  java.lang.String&nbsp;wsid,
                  java.lang.String&nbsp;language,
                  int&nbsp;packetSize)
                     throws java.io.IOException</pre>
<div class="block">TDS 4.2 Login Packet.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>serverName</code> - server host name</dd><dd><code>user</code> - user name</dd><dd><code>password</code> - user password</dd><dd><code>charset</code> - required server character set</dd><dd><code>appName</code> - application name</dd><dd><code>progName</code> - program name</dd><dd><code>wsid</code> - workstation ID</dd><dd><code>language</code> - server language for messages</dd><dd><code>packetSize</code> - required network packet size</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - if an I/O error occurs</dd></dl>
</li>
</ul>
<a name="send50LoginPkt(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>send50LoginPkt</h4>
<pre>private&nbsp;void&nbsp;send50LoginPkt(java.lang.String&nbsp;serverName,
                  java.lang.String&nbsp;user,
                  java.lang.String&nbsp;password,
                  java.lang.String&nbsp;charset,
                  java.lang.String&nbsp;appName,
                  java.lang.String&nbsp;progName,
                  java.lang.String&nbsp;wsid,
                  java.lang.String&nbsp;language,
                  int&nbsp;packetSize)
                     throws java.io.IOException</pre>
<div class="block">TDS 5.0 Login Packet.
 <P></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>serverName</code> - server host name</dd><dd><code>user</code> - user name</dd><dd><code>password</code> - user password</dd><dd><code>charset</code> - required server character set</dd><dd><code>appName</code> - application name</dd><dd><code>progName</code> - library name</dd><dd><code>wsid</code> - workstation ID</dd><dd><code>language</code> - server language for messages</dd><dd><code>packetSize</code> - required network packet size</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - if an I/O error occurs</dd></dl>
</li>
</ul>
<a name="sendMSLoginPkt(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sendMSLoginPkt</h4>
<pre>private&nbsp;void&nbsp;sendMSLoginPkt(java.lang.String&nbsp;serverName,
                  java.lang.String&nbsp;database,
                  java.lang.String&nbsp;user,
                  java.lang.String&nbsp;password,
                  java.lang.String&nbsp;domain,
                  java.lang.String&nbsp;appName,
                  java.lang.String&nbsp;progName,
                  java.lang.String&nbsp;wsid,
                  java.lang.String&nbsp;language,
                  java.lang.String&nbsp;macAddress,
                  int&nbsp;netPacketSize)
                     throws java.io.IOException,
                            java.sql.SQLException</pre>
<div class="block">Send a TDS 7 login packet.
 <p>
 This method incorporates the Windows single sign on code contributed by
 Magendran Sathaiah. To invoke single sign on just leave the user name
 blank or null. NB. This can only work if the driver is being executed on
 a Windows PC and <code>ntlmauth.dll</code> is on the path.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>serverName</code> - server host name</dd><dd><code>database</code> - required database</dd><dd><code>user</code> - user name</dd><dd><code>password</code> - user password</dd><dd><code>domain</code> - Windows NT domain (or <code>null</code>)</dd><dd><code>appName</code> - application name</dd><dd><code>progName</code> - program name</dd><dd><code>wsid</code> - workstation ID</dd><dd><code>language</code> - server language for messages</dd><dd><code>macAddress</code> - client network MAC address</dd><dd><code>netPacketSize</code> - TDS packet size to use</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - if an I/O error occurs</dd>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="tdsGssToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsGssToken</h4>
<pre>private&nbsp;void&nbsp;tdsGssToken()
                  throws java.io.IOException</pre>
<div class="block">Receive a GSS token.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="sendGssToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sendGssToken</h4>
<pre>private&nbsp;void&nbsp;sendGssToken()
                   throws java.io.IOException</pre>
<div class="block">Send the next GSS authentication token.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="sendNtlmChallengeResponse(java.lang.String, java.lang.String, java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sendNtlmChallengeResponse</h4>
<pre>private&nbsp;void&nbsp;sendNtlmChallengeResponse(java.lang.String&nbsp;user,
                             java.lang.String&nbsp;password,
                             java.lang.String&nbsp;domain)
                                throws java.io.IOException</pre>
<div class="block">Send the response to the NTLM authentication challenge.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>nonce</code> - The secret to hash with password.</dd><dd><code>user</code> - The user name.</dd><dd><code>password</code> - The user password.</dd><dd><code>domain</code> - The Windows NT Dommain.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="nextToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nextToken</h4>
<pre>private&nbsp;void&nbsp;nextToken()
                throws java.sql.SQLException</pre>
<div class="block">Read the next TDS token from the response stream.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an I/O or protocol error occurs</dd></dl>
</li>
</ul>
<a name="tdsInvalidToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsInvalidToken</h4>
<pre>private&nbsp;void&nbsp;tdsInvalidToken()
                      throws java.io.IOException,
                             <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Report unsupported TDS token in input stream.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tds5ParamFmt2Token()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds5ParamFmt2Token</h4>
<pre>private&nbsp;void&nbsp;tds5ParamFmt2Token()
                         throws java.io.IOException,
                                <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Process TDS 5 Sybase 12+ Dynamic results parameter descriptor.
 <p>When returning output parameters this token will be followed
 by a TDS5_PARAMS_TOKEN with the actual data.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tds5WideResultToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds5WideResultToken</h4>
<pre>private&nbsp;void&nbsp;tds5WideResultToken()
                          throws java.io.IOException,
                                 <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Process Sybase 12+ wide result token which provides enhanced
 column meta data.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tdsReturnStatusToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsReturnStatusToken</h4>
<pre>private&nbsp;void&nbsp;tdsReturnStatusToken()
                           throws java.io.IOException,
                                  java.sql.SQLException</pre>
<div class="block">Process stored procedure return status token.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="tdsProcIdToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsProcIdToken</h4>
<pre>private&nbsp;void&nbsp;tdsProcIdToken()
                     throws java.io.IOException</pre>
<div class="block">Process procedure ID token.
 <p>
 Used by DBLIB to obtain the object id of a stored procedure.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="tdsOffsetsToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsOffsetsToken</h4>
<pre>private&nbsp;void&nbsp;tdsOffsetsToken()
                      throws java.io.IOException</pre>
<div class="block">Process offsets token.
 <p>
 Used by DBLIB to return the offset of various keywords in a statement.
 This saves the client from having to parse a SQL statement. Enabled with
 <code>&quot;set offsets from on&quot;</code>.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="tds7ResultToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds7ResultToken</h4>
<pre>private&nbsp;void&nbsp;tds7ResultToken()
                      throws java.io.IOException,
                             <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a>,
                             java.sql.SQLException</pre>
<div class="block">Process a TDS 7.0 result set token.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="tds4ColNamesToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds4ColNamesToken</h4>
<pre>private&nbsp;void&nbsp;tds4ColNamesToken()
                        throws java.io.IOException</pre>
<div class="block">Process a TDS 4.2 column names token.
 <p>
 Note: Will be followed by a COL_FMT token.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="tds4ColFormatToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds4ColFormatToken</h4>
<pre>private&nbsp;void&nbsp;tds4ColFormatToken()
                         throws java.io.IOException,
                                <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Process a TDS 4.2 column format token.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tdsTableNameToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsTableNameToken</h4>
<pre>private&nbsp;void&nbsp;tdsTableNameToken()
                        throws java.io.IOException,
                               <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Process a table name token.
 <p> Sent by select for browse or cursor functions.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tdsColumnInfoToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsColumnInfoToken</h4>
<pre>private&nbsp;void&nbsp;tdsColumnInfoToken()
                         throws java.io.IOException,
                                <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Process a column infomation token.
 <p>Sent by select for browse or cursor functions.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tdsOrderByToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsOrderByToken</h4>
<pre>private&nbsp;void&nbsp;tdsOrderByToken()
                      throws java.io.IOException</pre>
<div class="block">Process an order by token.
 <p>Sent to describe columns in an order by clause.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="tdsErrorToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsErrorToken</h4>
<pre>private&nbsp;void&nbsp;tdsErrorToken()
                    throws java.io.IOException</pre>
<div class="block">Process a TD4/TDS7 error or informational message.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="tdsOutputParamToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsOutputParamToken</h4>
<pre>private&nbsp;void&nbsp;tdsOutputParamToken()
                          throws java.io.IOException,
                                 <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a>,
                                 java.sql.SQLException</pre>
<div class="block">Process output parameters.
 </p>
 Normally the output parameters are preceded by a TDS type 79
 (procedure return value) record; however there are at least two
 situations with TDS version 8 where this is not the case:
 <ol>
 <li>For the return value of a SQL 2000+ user defined function.</li>
 <li>For a remote procedure call (server.database.user.procname) where
 the 79 record is only sent if a result set is also returned by the remote
 procedure. In this case the 79 record just acts as marker for the start of
 the output parameters. The actual return value is in an output param token.</li>
 </ol>
 Output parameters are distinguished from procedure return values by the value of
 a byte that immediately follows the parameter name. A value of 1 seems to indicate
 a normal output parameter while a value of 2 indicates a procedure return value.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="tdsLoginAckToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsLoginAckToken</h4>
<pre>private&nbsp;void&nbsp;tdsLoginAckToken()
                       throws java.io.IOException</pre>
<div class="block">Process a login acknowledgement packet.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="tdsControlToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsControlToken</h4>
<pre>private&nbsp;void&nbsp;tdsControlToken()
                      throws java.io.IOException</pre>
<div class="block">Process a control token (function unknown).</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="tdsRowToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsRowToken</h4>
<pre>private&nbsp;void&nbsp;tdsRowToken()
                  throws java.io.IOException,
                         <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Process a row data token.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tds5ParamsToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds5ParamsToken</h4>
<pre>private&nbsp;void&nbsp;tds5ParamsToken()
                      throws java.io.IOException,
                             <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a>,
                             java.sql.SQLException</pre>
<div class="block">Process TDS 5.0 Params Token.
 Stored procedure output parameters or data returned in parameter format
 after a TDS Dynamic packet or as extended error information.
 <p>The type of the preceding token is inspected to determine if this packet
 contains output parameter result data. A TDS5_PARAMFMT2_TOKEN is sent before
 this one in Sybase 12 to introduce output parameter results.
 A TDS5_PARAMFMT_TOKEN is sent before this one to introduce extended error
 information.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="tdsCapabilityToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsCapabilityToken</h4>
<pre>private&nbsp;void&nbsp;tdsCapabilityToken()
                         throws java.io.IOException,
                                <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Processes a TDS 5.0 capability token.
 <p>
 Sent after login to describe the server's capabilities.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - if an I/O error occurs</dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tdsEnvChangeToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsEnvChangeToken</h4>
<pre>private&nbsp;void&nbsp;tdsEnvChangeToken()
                        throws java.io.IOException,
                               java.sql.SQLException</pre>
<div class="block">Process an environment change packet.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="tds5ErrorToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds5ErrorToken</h4>
<pre>private&nbsp;void&nbsp;tds5ErrorToken()
                     throws java.io.IOException</pre>
<div class="block">Process a TDS 5 error or informational message.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="tds5DynamicToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds5DynamicToken</h4>
<pre>private&nbsp;void&nbsp;tds5DynamicToken()
                       throws java.io.IOException</pre>
<div class="block">Process TDS5 dynamic SQL aknowledgements.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="tds5ParamFmtToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds5ParamFmtToken</h4>
<pre>private&nbsp;void&nbsp;tds5ParamFmtToken()
                        throws java.io.IOException,
                               <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Process TDS 5 Dynamic results parameter descriptors.
 <p>
 With Sybase 12+ this has been superseded by the TDS5_PARAMFMT2_TOKEN
 except when used to return extended error information.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tdsNtlmAuthToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsNtlmAuthToken</h4>
<pre>private&nbsp;void&nbsp;tdsNtlmAuthToken()
                       throws java.io.IOException,
                              <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Process a NTLM Authentication challenge.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="getIntFromBuffer(byte[], int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIntFromBuffer</h4>
<pre>private static&nbsp;int&nbsp;getIntFromBuffer(byte[]&nbsp;buf,
                   int&nbsp;offset)</pre>
</li>
</ul>
<a name="getShortFromBuffer(byte[], int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getShortFromBuffer</h4>
<pre>private static&nbsp;int&nbsp;getShortFromBuffer(byte[]&nbsp;buf,
                     int&nbsp;offset)</pre>
</li>
</ul>
<a name="tds5ResultToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds5ResultToken</h4>
<pre>private&nbsp;void&nbsp;tds5ResultToken()
                      throws java.io.IOException,
                             <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block">Process a TDS 5.0 result set packet.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tdsDoneToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsDoneToken</h4>
<pre>private&nbsp;void&nbsp;tdsDoneToken()
                   throws java.io.IOException</pre>
<div class="block">Process a DONE, DONEINPROC or DONEPROC token.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="executeSQL42(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>executeSQL42</h4>
<pre>private&nbsp;void&nbsp;executeSQL42(java.lang.String&nbsp;sql,
                java.lang.String&nbsp;procName,
                <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;parameters,
                boolean&nbsp;noMetaData,
                boolean&nbsp;sendNow)
                   throws java.io.IOException,
                          java.sql.SQLException</pre>
<div class="block">Execute SQL using TDS 4.2 protocol.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sql</code> - The SQL statement to execute.</dd><dd><code>procName</code> - Stored procedure to execute or null.</dd><dd><code>parameters</code> - Parameters for call or null.</dd><dd><code>noMetaData</code> - Suppress meta data for cursor calls.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="executeSQL50(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[])">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>executeSQL50</h4>
<pre>private&nbsp;void&nbsp;executeSQL50(java.lang.String&nbsp;sql,
                java.lang.String&nbsp;procName,
                <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;parameters)
                   throws java.io.IOException,
                          java.sql.SQLException</pre>
<div class="block">Execute SQL using TDS 5.0 protocol.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sql</code> - The SQL statement to execute.</dd><dd><code>procName</code> - Stored procedure to execute or null.</dd><dd><code>parameters</code> - Parameters for call or null.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="isPreparedProcedureName(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isPreparedProcedureName</h4>
<pre>public static&nbsp;boolean&nbsp;isPreparedProcedureName(java.lang.String&nbsp;procName)</pre>
<div class="block">Returns <code>true</code> if the specified <code>procName</code>
 is a sp_prepare or sp_prepexec handle; returns <code>false</code>
 otherwise.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>procName</code> - Stored procedure to execute or <code>null</code>.</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>true</code> if the specified <code>procName</code>
   is a sp_prepare or sp_prepexec handle; <code>false</code>
   otherwise.</dd></dl>
</li>
</ul>
<a name="executeSQL70(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>executeSQL70</h4>
<pre>private&nbsp;void&nbsp;executeSQL70(java.lang.String&nbsp;sql,
                java.lang.String&nbsp;procName,
                <a href="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</a>[]&nbsp;parameters,
                boolean&nbsp;noMetaData,
                boolean&nbsp;sendNow)
                   throws java.io.IOException,
                          java.sql.SQLException</pre>
<div class="block">Execute SQL using TDS 7.0 protocol.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>sql</code> - The SQL statement to execute.</dd><dd><code>procName</code> - Stored procedure to execute or <code>null</code>.</dd><dd><code>parameters</code> - Parameters for call or <code>null</code>.</dd><dd><code>noMetaData</code> - Suppress meta data for cursor calls.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="setRowCountAndTextSize(int, int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRowCountAndTextSize</h4>
<pre>private&nbsp;void&nbsp;setRowCountAndTextSize(int&nbsp;rowCount,
                          int&nbsp;textSize)
                             throws java.sql.SQLException</pre>
<div class="block">Sets the server row count (to limit the number of rows in a result set)
 and text size (to limit the size of returned TEXT/NTEXT fields).</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>rowCount</code> - the number of rows to return or 0 for no limit or -1 to
                 leave as is</dd><dd><code>textSize</code> - the maximum number of bytes in a TEXT column to return
                 or -1 to leave as is</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.sql.SQLException</code> - if an error is returned by the server</dd></dl>
</li>
</ul>
<a name="wait(int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wait</h4>
<pre>private&nbsp;void&nbsp;wait(int&nbsp;timeOut)
           throws java.io.IOException,
                  java.sql.SQLException</pre>
<div class="block">Waits for the first byte of the server response.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>timeOut</code> - the timeout period in seconds or 0</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="cleanUp()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cleanUp</h4>
<pre>public&nbsp;void&nbsp;cleanUp()</pre>
<div class="block">Releases parameter and result set data and metadata to free up memory.
 <p/>
 This is useful before the <code>TdsCore</code> is cached for reuse.</div>
</li>
</ul>
<a name="getMessages()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMessages</h4>
<pre>public&nbsp;<a href="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</a>&nbsp;getMessages()</pre>
<div class="block">Returns the diagnostic chain for this instance.</div>
</li>
</ul>
<a name="getMACAddress(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMACAddress</h4>
<pre>private static&nbsp;byte[]&nbsp;getMACAddress(java.lang.String&nbsp;macString)</pre>
<div class="block">Converts a user supplied MAC address into a byte array.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>macString</code> - the MAC address as a hex string</dd>
<dt><span class="strong">Returns:</span></dt><dd>the MAC address as a <code>byte[]</code></dd></dl>
</li>
</ul>
<a name="getHostName()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHostName</h4>
<pre>private static&nbsp;java.lang.String&nbsp;getHostName()</pre>
<div class="block">Tries to figure out what client name we should identify ourselves as.
 Gets the hostname of this machine,</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>name to use as the client</dd></dl>
</li>
</ul>
<a name="tds7CryptPass(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tds7CryptPass</h4>
<pre>private static&nbsp;java.lang.String&nbsp;tds7CryptPass(java.lang.String&nbsp;pw)</pre>
<div class="block">A <B>very</B> poor man's "encryption".</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>pw</code> - password to encrypt</dd>
<dt><span class="strong">Returns:</span></dt><dd>encrypted password</dd></dl>
</li>
</ul>
<a name="tdsComputedResultToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsComputedResultToken</h4>
<pre>private&nbsp;void&nbsp;tdsComputedResultToken()
                             throws java.io.IOException,
                                    <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></pre>
<div class="block"><p> Process meta data for the computed result set complementing the
 current result set. </p></div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd></dl>
</li>
</ul>
<a name="tdsComputedRowToken()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tdsComputedRowToken</h4>
<pre>private&nbsp;void&nbsp;tdsComputedRowToken()
                          throws java.io.IOException,
                                 <a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a>,
                                 java.sql.SQLException</pre>
<div class="block"><p> Process computed row data. </p></div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd>
<dd><code><a href="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</a></code></dd>
<dd><code>java.sql.SQLException</code></dd></dl>
</li>
</ul>
<a name="isWindowsOS()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isWindowsOS</h4>
<pre>static&nbsp;boolean&nbsp;isWindowsOS()</pre>
<div class="block"><p> Checks whether the <code>os.name</code> system property contains
 "windows". </p></div>
</li>
</ul>
<a name="createGssToken()">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>createGssToken</h4>
<pre>private&nbsp;byte[]&nbsp;createGssToken()
                       throws org.ietf.jgss.GSSException,
                              java.net.UnknownHostException</pre>
<div class="block">Initializes the GSS context and creates the initial token.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>org.ietf.jgss.GSSException</code></dd>
<dd><code>java.net.UnknownHostException</code></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/TdsCore.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../net/sourceforge/jtds/jdbc/Tds9Test.html" title="class in net.sourceforge.jtds.jdbc"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?net/sourceforge/jtds/jdbc/TdsCore.html" target="_top">Frames</a></li>
<li><a href="TdsCore.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Generated on June 8 2013</small></p>
</body>
</html>