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 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_19) on Wed Dec 30 16:45:48 CET 2009 -->
<TITLE>
TdsCore (jTDS API)
</TITLE>
<META NAME="keywords" CONTENT="net.sourceforge.jtds.jdbc.TdsCore class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="TdsCore (jTDS API)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TdsCore.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../net/sourceforge/jtds/jdbc/Support.html" title="class in net.sourceforge.jtds.jdbc"><B>PREV CLASS</B></A>
<A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="TdsCore.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
net.sourceforge.jtds.jdbc</FONT>
<BR>
Class TdsCore</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>net.sourceforge.jtds.jdbc.TdsCore</B>
</PRE>
<HR>
<DL>
<DT>public class <B>TdsCore</B><DT>extends java.lang.Object</DL>
<P>
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>
<P>
<P>
<DL>
<DT><B>Version:</B></DT>
<DD>$Id: TdsCore.java,v 1.115.2.4 2009/08/10 17:38:02 ickzon Exp $</DD>
<DT><B>Author:</B></DT>
<DD>Mike Hutchinson, Matt Brinkley, Alin Sinpalean, FreeTDS project</DD>
</DL>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<A NAME="nested_class_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Nested Class Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TableMetaData</A></B></CODE>
<BR>
Inner static class used to hold table meta data.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.TdsToken.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TdsToken</A></B></CODE>
<BR>
Inner static class used to hold information about TDS tokens read.</TD>
</TR>
</TABLE>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Field Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#ASYNC_CANCEL">ASYNC_CANCEL</A></B></CODE>
<BR>
Cancel has been generated by <code>Statement.cancel()</code>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#CANCEL_PKT">CANCEL_PKT</A></B></CODE>
<BR>
TDS Cancel packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancelMonitor">cancelMonitor</A></B></CODE>
<BR>
Synchronization monitor for <A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancelPending"><CODE>cancelPending</CODE></A>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancelPending">cancelPending</A></B></CODE>
<BR>
Indicates pending cancel that needs to be cleared.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#columns">columns</A></B></CODE>
<BR>
The array of column meta data objects for this result set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/ConnectionJDBC2.html" title="class in net.sourceforge.jtds.jdbc">ConnectionJDBC2</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#connection">connection</A></B></CODE>
<BR>
The Connection object that created this object.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/Semaphore.html" title="class in net.sourceforge.jtds.jdbc">Semaphore</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#connectionLock">connectionLock</A></B></CODE>
<BR>
Mutual exclusion lock on connection.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.TdsToken.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TdsToken</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#currentToken">currentToken</A></B></CODE>
<BR>
The descriptor object for the current TDS token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DEFAULT_MIN_PKT_SIZE_TDS70">DEFAULT_MIN_PKT_SIZE_TDS70</A></B></CODE>
<BR>
Default minimum network packet size for TDS 7.0 and newer.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_CANCEL">DONE_CANCEL</A></B></CODE>
<BR>
Done: Cancel acknowledgement.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_END_OF_RESPONSE">DONE_END_OF_RESPONSE</A></B></CODE>
<BR>
Done: Response terminator (if more than one request packet is sent, each
response is terminated by a DONE packet with this flag set).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_ERROR">DONE_ERROR</A></B></CODE>
<BR>
Done: command caused an error.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_MORE_RESULTS">DONE_MORE_RESULTS</A></B></CODE>
<BR>
Done: more results are expected.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#DONE_ROW_COUNT">DONE_ROW_COUNT</A></B></CODE>
<BR>
Done: There is a valid row count.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static <A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#EMPTY_PARAMETER_INFO">EMPTY_PARAMETER_INFO</A></B></CODE>
<BR>
Used to optimize the <A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getParameters()"><CODE>getParameters()</CODE></A> call</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#endOfResponse">endOfResponse</A></B></CODE>
<BR>
True if the server response is fully read.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#endOfResults">endOfResults</A></B></CODE>
<BR>
True if the current result set is at end of file.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#EXECUTE_SQL">EXECUTE_SQL</A></B></CODE>
<BR>
Prepare SQL using sp_executesql</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#fatalError">fatalError</A></B></CODE>
<BR>
Indicates that a fatal error has occured and the connection will close.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#hostName">hostName</A></B></CODE>
<BR>
Name of the client host (it can take quite a while to find it out if DNS is configured incorrectly).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/ResponseStream.html" title="class in net.sourceforge.jtds.jdbc">ResponseStream</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#in">in</A></B></CODE>
<BR>
The input server response stream.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#inBatch">inBatch</A></B></CODE>
<BR>
Indicates processing a batch.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isClosed">isClosed</A></B></CODE>
<BR>
Indicates that this object is closed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#LOGIN_PKT">LOGIN_PKT</A></B></CODE>
<BR>
TDS 4.2 or 5.0 Login packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#MAX_PKT_SIZE">MAX_PKT_SIZE</A></B></CODE>
<BR>
Maximum network packet size.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#messages">messages</A></B></CODE>
<BR>
The head of the diagnostic messages chain.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#MIN_PKT_SIZE">MIN_PKT_SIZE</A></B></CODE>
<BR>
Minimum network packet size.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#MSDTC_PKT">MSDTC_PKT</A></B></CODE>
<BR>
TDS MSDTC packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#MSLOGIN_PKT">MSLOGIN_PKT</A></B></CODE>
<BR>
TDS 7.0 Login packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#nextParam">nextParam</A></B></CODE>
<BR>
The index of the next output parameter to populate.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#NTLMAUTH_PKT">NTLMAUTH_PKT</A></B></CODE>
<BR>
TDS 7.0 NTLM Authentication packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#ntlmAuthSSO">ntlmAuthSSO</A></B></CODE>
<BR>
Flag that indicates if logon() should try to use Windows Single Sign On using SSPI.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/RequestStream.html" title="class in net.sourceforge.jtds.jdbc">RequestStream</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#out">out</A></B></CODE>
<BR>
The output server request stream.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#parameters">parameters</A></B></CODE>
<BR>
The array of parameter meta data objects for the current procedure call.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#PKT_HDR_LEN">PKT_HDR_LEN</A></B></CODE>
<BR>
The size of the packet header.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#PRELOGIN_PKT">PRELOGIN_PKT</A></B></CODE>
<BR>
SQL 2000 prelogin negotiation packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#PREPARE">PREPARE</A></B></CODE>
<BR>
Prepare SQL using sp_prepare and sp_execute</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#QUERY_PKT">QUERY_PKT</A></B></CODE>
<BR>
TDS 4.2 or 7.0 Query packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#REPLY_PKT">REPLY_PKT</A></B></CODE>
<BR>
TDS Reply packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#returnParam">returnParam</A></B></CODE>
<BR>
The return parameter meta data object for the current procedure call.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.lang.Integer</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#returnStatus">returnStatus</A></B></CODE>
<BR>
The stored procedure return status.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private java.lang.Object[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#rowData">rowData</A></B></CODE>
<BR>
The array of column data objects in the current row.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#RPC_PKT">RPC_PKT</A></B></CODE>
<BR>
TDS Remote Procedure Call.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#serverType">serverType</A></B></CODE>
<BR>
The make of SQL Server (Sybase/Microsoft).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/SharedSocket.html" title="class in net.sourceforge.jtds.jdbc">SharedSocket</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#socket">socket</A></B></CODE>
<BR>
The Shared network socket object.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SSL_CLIENT_FORCE_ENCRYPT">SSL_CLIENT_FORCE_ENCRYPT</A></B></CODE>
<BR>
SSL Mode - Client requested force encryption.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SSL_ENCRYPT_LOGIN">SSL_ENCRYPT_LOGIN</A></B></CODE>
<BR>
SSL Mode - Login packet must be encrypted.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SSL_NO_ENCRYPT">SSL_NO_ENCRYPT</A></B></CODE>
<BR>
SSL Mode - No server certificate installed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SSL_SERVER_FORCE_ENCRYPT">SSL_SERVER_FORCE_ENCRYPT</A></B></CODE>
<BR>
SSL Mode - Server requested force encryption.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sslMode">sslMode</A></B></CODE>
<BR>
Indicates type of SSL connection.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static <A HREF="../../../../net/sourceforge/jtds/util/SSPIJNIClient.html" title="class in net.sourceforge.jtds.util">SSPIJNIClient</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sspiJNIClient">sspiJNIClient</A></B></CODE>
<BR>
A reference to ntlm.SSPIJNIClient.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_BIGINT">SYB_BIGINT</A></B></CODE>
<BR>
Sybase 15+ bigint.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_BITNULL">SYB_BITNULL</A></B></CODE>
<BR>
Sybase nullable bit type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_DATETIME">SYB_DATETIME</A></B></CODE>
<BR>
Sybase date and time data types.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_EXTCOLINFO">SYB_EXTCOLINFO</A></B></CODE>
<BR>
Sybase extended column meta data.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_LONGDATA">SYB_LONGDATA</A></B></CODE>
<BR>
Sybase char and binary > 255.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_UNICODE">SYB_UNICODE</A></B></CODE>
<BR>
Sybase univarchar etc.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYB_UNITEXT">SYB_UNITEXT</A></B></CODE>
<BR>
Sybase 15+ unitext.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#SYBQUERY_PKT">SYBQUERY_PKT</A></B></CODE>
<BR>
TDS 5.0 Query packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private <A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TableMetaData</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tables">tables</A></B></CODE>
<BR>
The array of table names associated with this result.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ALTROW">TDS_ALTROW</A></B></CODE>
<BR>
TDS Computed result set data row token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_AUTH_TOKEN">TDS_AUTH_TOKEN</A></B></CODE>
<BR>
TDS 7.0 NTLM authentication challenge token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_CAP_TOKEN">TDS_CAP_TOKEN</A></B></CODE>
<BR>
TDS 5.0 capabilities token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_CLOSE_TOKEN">TDS_CLOSE_TOKEN</A></B></CODE>
<BR>
TDS 5.0 Close token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COLFMT_TOKEN">TDS_COLFMT_TOKEN</A></B></CODE>
<BR>
TDS 4.2 Column meta data token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COLINFO_TOKEN">TDS_COLINFO_TOKEN</A></B></CODE>
<BR>
TDS Cursor results column infomation token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COLNAME_TOKEN">TDS_COLNAME_TOKEN</A></B></CODE>
<BR>
TDS 4.2 Column names token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COMP_NAMES_TOKEN">TDS_COMP_NAMES_TOKEN</A></B></CODE>
<BR>
TDS Computed result set names token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_COMP_RESULT_TOKEN">TDS_COMP_RESULT_TOKEN</A></B></CODE>
<BR>
TDS Computed result set token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_CONTROL_TOKEN">TDS_CONTROL_TOKEN</A></B></CODE>
<BR>
TDS control token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_DBRPC_TOKEN">TDS_DBRPC_TOKEN</A></B></CODE>
<BR>
TDS 5.0 RPC token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_DONE_TOKEN">TDS_DONE_TOKEN</A></B></CODE>
<BR>
TDS done token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_DONEINPROC_TOKEN">TDS_DONEINPROC_TOKEN</A></B></CODE>
<BR>
TDS done in procedure token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_DONEPROC_TOKEN">TDS_DONEPROC_TOKEN</A></B></CODE>
<BR>
TDS done procedure token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_CHARSET">TDS_ENV_CHARSET</A></B></CODE>
<BR>
Environment change: charset changed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_DATABASE">TDS_ENV_DATABASE</A></B></CODE>
<BR>
Environment change: database changed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_LANG">TDS_ENV_LANG</A></B></CODE>
<BR>
Environment change: language changed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_LCID">TDS_ENV_LCID</A></B></CODE>
<BR>
Environment change: locale changed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_PACKSIZE">TDS_ENV_PACKSIZE</A></B></CODE>
<BR>
Environment change: network packet size changed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENV_SQLCOLLATION">TDS_ENV_SQLCOLLATION</A></B></CODE>
<BR>
Environment change: TDS 8 collation changed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ENVCHANGE_TOKEN">TDS_ENVCHANGE_TOKEN</A></B></CODE>
<BR>
TDS environment change token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ERROR_TOKEN">TDS_ERROR_TOKEN</A></B></CODE>
<BR>
TDS error result token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_INFO_TOKEN">TDS_INFO_TOKEN</A></B></CODE>
<BR>
TDS Information message token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_LANG_TOKEN">TDS_LANG_TOKEN</A></B></CODE>
<BR>
TDS 5.0 Language token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_LOGINACK_TOKEN">TDS_LOGINACK_TOKEN</A></B></CODE>
<BR>
TDS Login acknowledgement token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_MSG50_TOKEN">TDS_MSG50_TOKEN</A></B></CODE>
<BR>
TDS 5.0 message token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_OFFSETS_TOKEN">TDS_OFFSETS_TOKEN</A></B></CODE>
<BR>
TDS DBLIB Offsets token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_OPTIONCMD_TOKEN">TDS_OPTIONCMD_TOKEN</A></B></CODE>
<BR>
TDS Optional command token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ORDER_TOKEN">TDS_ORDER_TOKEN</A></B></CODE>
<BR>
TDS Order by columns token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_PARAM_TOKEN">TDS_PARAM_TOKEN</A></B></CODE>
<BR>
TDS Output parameter value token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_PROCID">TDS_PROCID</A></B></CODE>
<BR>
TDS Procedure ID token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_RESULT_TOKEN">TDS_RESULT_TOKEN</A></B></CODE>
<BR>
TDS 5.0 Result set column meta data token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_RETURNSTATUS_TOKEN">TDS_RETURNSTATUS_TOKEN</A></B></CODE>
<BR>
TDS Procedure call return status token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_ROW_TOKEN">TDS_ROW_TOKEN</A></B></CODE>
<BR>
TDS Result set data row token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS_TABNAME_TOKEN">TDS_TABNAME_TOKEN</A></B></CODE>
<BR>
TDS Table name token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_DYNAMIC_TOKEN">TDS5_DYNAMIC_TOKEN</A></B></CODE>
<BR>
TDS 5.0 Dynamic SQL token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_PARAMFMT_TOKEN">TDS5_PARAMFMT_TOKEN</A></B></CODE>
<BR>
TDS 5.0 parameter descriptor token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_PARAMFMT2_TOKEN">TDS5_PARAMFMT2_TOKEN</A></B></CODE>
<BR>
TDS 5.0 Parameter format token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_PARAMS_TOKEN">TDS5_PARAMS_TOKEN</A></B></CODE>
<BR>
TDS 5.0 parameter value token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS5_WIDE_RESULT">TDS5_WIDE_RESULT</A></B></CODE>
<BR>
TSD 5.0 Wide result set token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS7_COMP_RESULT_TOKEN">TDS7_COMP_RESULT_TOKEN</A></B></CODE>
<BR>
TDS 7.0 Computed Result set column meta data token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TDS7_RESULT_TOKEN">TDS7_RESULT_TOKEN</A></B></CODE>
<BR>
TDS 7.0 Result set column meta data token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.util.HashMap</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds8SpNames">tds8SpNames</A></B></CODE>
<BR>
Map of system stored procedures that have shortcuts in TDS8.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsVersion">tdsVersion</A></B></CODE>
<BR>
The TDS version being supported by this connection.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TEMPORARY_STORED_PROCEDURES">TEMPORARY_STORED_PROCEDURES</A></B></CODE>
<BR>
Prepare SQL using temporary stored procedures</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TIMEOUT_CANCEL">TIMEOUT_CANCEL</A></B></CODE>
<BR>
Cancel has been generated by a query timeout.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#UNPREPARED">UNPREPARED</A></B></CODE>
<BR>
Do not prepare SQL</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private)</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#TdsCore(net.sourceforge.jtds.jdbc.ConnectionJDBC2, net.sourceforge.jtds.jdbc.SQLDiagnostic)">TdsCore</A></B>(<A HREF="../../../../net/sourceforge/jtds/jdbc/ConnectionJDBC2.html" title="class in net.sourceforge.jtds.jdbc">ConnectionJDBC2</A> connection,
<A HREF="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</A> messages)</CODE>
<BR>
Construct a TdsCore object.</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancel(boolean)">cancel</A></B>(boolean timeout)</CODE>
<BR>
Send (only) one cancel packet to the server.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#checkOpen()">checkOpen</A></B>()</CODE>
<BR>
Check that the connection is still open.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cleanUp()">cleanUp</A></B>()</CODE>
<BR>
Releases parameter and result set data and metadata to free up memory.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#clearResponseQueue()">clearResponseQueue</A></B>()</CODE>
<BR>
Empty the server response queue.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#close()">close</A></B>()</CODE>
<BR>
Close the <code>TdsCore</code> connection object and associated streams.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#closeConnection()">closeConnection</A></B>()</CODE>
<BR>
Inform the server that this connection is closing.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#consumeOneResponse()">consumeOneResponse</A></B>()</CODE>
<BR>
Consume packets from the server response queue up to (and including) the
first response terminator.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) byte[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#enlistConnection(int, byte[])">enlistConnection</A></B>(int type,
byte[] oleTranID)</CODE>
<BR>
Enlist the current connection in a distributed transaction or request the location of the
MSDTC instance controlling the server we are connected to.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><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></B>(java.lang.String sql,
java.lang.String procName,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] parameters,
boolean noMetaData,
int timeOut,
int maxRows,
int maxFieldSize,
boolean sendNow)</CODE>
<BR>
Send an SQL statement with optional parameters to the server.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#executeSQL42(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, boolean)">executeSQL42</A></B>(java.lang.String sql,
java.lang.String procName,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] parameters,
boolean noMetaData,
boolean sendNow)</CODE>
<BR>
Execute SQL using TDS 4.2 protocol.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#executeSQL50(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[])">executeSQL50</A></B>(java.lang.String sql,
java.lang.String procName,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] parameters)</CODE>
<BR>
Execute SQL using TDS 5.0 protocol.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#executeSQL70(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, boolean)">executeSQL70</A></B>(java.lang.String sql,
java.lang.String procName,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] parameters,
boolean noMetaData,
boolean sendNow)</CODE>
<BR>
Execute SQL using TDS 7.0 protocol.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) java.sql.SQLException</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getBatchCounts(java.util.ArrayList, java.sql.SQLException)">getBatchCounts</A></B>(java.util.ArrayList counts,
java.sql.SQLException sqlEx)</CODE>
<BR>
Obtain the counts from a batch of SQL updates.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) <A HREF="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getColumns()">getColumns</A></B>()</CODE>
<BR>
Retrieve the current result set column descriptors.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getHostName()">getHostName</A></B>()</CODE>
<BR>
Tries to figure out what client name we should identify ourselves as.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getIntFromBuffer(byte[], int)">getIntFromBuffer</A></B>(byte[] buf,
int offset)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static byte[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getMACAddress(java.lang.String)">getMACAddress</A></B>(java.lang.String macString)</CODE>
<BR>
Converts a user supplied MAC address into a byte array.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getMessages()">getMessages</A></B>()</CODE>
<BR>
Returns the diagnostic chain for this instance.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getMoreResults()">getMoreResults</A></B>()</CODE>
<BR>
Get the next result set or update count from the TDS stream.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getNextRow()">getNextRow</A></B>()</CODE>
<BR>
Retrieve the next data row from the result set.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) <A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getParameters()">getParameters</A></B>()</CODE>
<BR>
Retrieve the parameter meta data from a Sybase prepare.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) java.lang.Integer</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getReturnStatus()">getReturnStatus</A></B>()</CODE>
<BR>
Retrieve the return status for the current stored procedure.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) java.lang.Object[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getRowData()">getRowData</A></B>()</CODE>
<BR>
Retrieve the current result set data items.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getShortFromBuffer(byte[], int)">getShortFromBuffer</A></B>(byte[] buf,
int offset)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getTdsVersion()">getTdsVersion</A></B>()</CODE>
<BR>
Retrieve the TDS protocol version.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getUpdateCount()">getUpdateCount</A></B>()</CODE>
<BR>
Retrieve the update count from the current TDS token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isDataInResultSet()">isDataInResultSet</A></B>()</CODE>
<BR>
Retrieve the status of result set.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isEndOfResponse()">isEndOfResponse</A></B>()</CODE>
<BR>
Retrieve the status of the response stream.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isPreparedProcedureName(java.lang.String)">isPreparedProcedureName</A></B>(java.lang.String procName)</CODE>
<BR>
Returns <code>true</code> if the specified <code>procName</code>
is a sp_prepare or sp_prepexec handle; returns <code>false</code>
otherwise.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isResultSet()">isResultSet</A></B>()</CODE>
<BR>
Retrieve the status of the next result item.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isRowData()">isRowData</A></B>()</CODE>
<BR>
Retrieve the status of the next result item.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#isUpdateCount()">isUpdateCount</A></B>()</CODE>
<BR>
Retrieve the status of the next result item.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><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></B>(java.lang.String serverName,
java.lang.String database,
java.lang.String user,
java.lang.String password,
java.lang.String domain,
java.lang.String charset,
java.lang.String appName,
java.lang.String progName,
java.lang.String wsid,
java.lang.String language,
java.lang.String macAddress,
int packetSize)</CODE>
<BR>
Login to the SQL Server.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#microsoftPrepare(java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, int, int)">microsoftPrepare</A></B>(java.lang.String sql,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] params,
boolean needCursor,
int resultSetType,
int resultSetConcurrency)</CODE>
<BR>
Prepares the SQL for use with Microsoft server.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#negotiateSSL(java.lang.String, java.lang.String)">negotiateSSL</A></B>(java.lang.String instance,
java.lang.String ssl)</CODE>
<BR>
Negotiate SSL settings with SQL 2000+ server.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#nextToken()">nextToken</A></B>()</CODE>
<BR>
Read the next TDS token from the response stream.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#putLoginString(java.lang.String, int)">putLoginString</A></B>(java.lang.String txt,
int len)</CODE>
<BR>
Write a TDS login packet string. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#readPreLoginPacket()">readPreLoginPacket</A></B>()</CODE>
<BR>
Process the pre login acknowledgement from the server.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><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></B>(java.lang.String serverName,
java.lang.String user,
java.lang.String password,
java.lang.String charset,
java.lang.String appName,
java.lang.String progName,
java.lang.String wsid,
java.lang.String language,
int packetSize)</CODE>
<BR>
TDS 4.2 Login Packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><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></B>(java.lang.String serverName,
java.lang.String user,
java.lang.String password,
java.lang.String charset,
java.lang.String appName,
java.lang.String progName,
java.lang.String wsid,
java.lang.String language,
int packetSize)</CODE>
<BR>
TDS 5.0 Login Packet.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><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></B>(java.lang.String serverName,
java.lang.String database,
java.lang.String user,
java.lang.String password,
java.lang.String domain,
java.lang.String appName,
java.lang.String progName,
java.lang.String wsid,
java.lang.String language,
java.lang.String macAddress,
int netPacketSize)</CODE>
<BR>
Send a TDS 7 login packet.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sendNtlmChallengeResponse(byte[], java.lang.String, java.lang.String, java.lang.String)">sendNtlmChallengeResponse</A></B>(byte[] nonce,
java.lang.String user,
java.lang.String password,
java.lang.String domain)</CODE>
<BR>
Send the response to the NTLM authentication challenge.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sendPreLoginPacket(java.lang.String, boolean)">sendPreLoginPacket</A></B>(java.lang.String instance,
boolean forceEncryption)</CODE>
<BR>
Send the SQL Server 2000 pre login packet.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#setColumns(net.sourceforge.jtds.jdbc.ColInfo[])">setColumns</A></B>(<A HREF="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</A>[] columns)</CODE>
<BR>
Sets the column meta data.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#setRowCountAndTextSize(int, int)">setRowCountAndTextSize</A></B>(int rowCount,
int textSize)</CODE>
<BR>
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).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#startBatch()">startBatch</A></B>()</CODE>
<BR>
Notifies the <code>TdsCore</code> that a batch is starting. </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#submitSQL(java.lang.String)">submitSQL</A></B>(java.lang.String sql)</CODE>
<BR>
Submit a simple SQL statement to the server and process all output.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sybasePrepare(java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[])">sybasePrepare</A></B>(java.lang.String sql,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] params)</CODE>
<BR>
Creates a light weight stored procedure on a Sybase server.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>(package private) void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#sybaseUnPrepare(java.lang.String)">sybaseUnPrepare</A></B>(java.lang.String procName)</CODE>
<BR>
Drops a Sybase temporary stored procedure.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds4ColFormatToken()">tds4ColFormatToken</A></B>()</CODE>
<BR>
Process a TDS 4.2 column format token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds4ColNamesToken()">tds4ColNamesToken</A></B>()</CODE>
<BR>
Process a TDS 4.2 column names token.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5DynamicToken()">tds5DynamicToken</A></B>()</CODE>
<BR>
Process TDS5 dynamic SQL aknowledgements.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ErrorToken()">tds5ErrorToken</A></B>()</CODE>
<BR>
Process a TDS 5 error or informational message.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ParamFmt2Token()">tds5ParamFmt2Token</A></B>()</CODE>
<BR>
Process TDS 5 Sybase 12+ Dynamic results parameter descriptor.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ParamFmtToken()">tds5ParamFmtToken</A></B>()</CODE>
<BR>
Process TDS 5 Dynamic results parameter descriptors.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ParamsToken()">tds5ParamsToken</A></B>()</CODE>
<BR>
Process TDS 5.0 Params Token.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5ResultToken()">tds5ResultToken</A></B>()</CODE>
<BR>
Process a TDS 5.0 result set packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds5WideResultToken()">tds5WideResultToken</A></B>()</CODE>
<BR>
Process Sybase 12+ wide result token which provides enhanced
column meta data.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private static java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds7CryptPass(java.lang.String)">tds7CryptPass</A></B>(java.lang.String pw)</CODE>
<BR>
A <B>very</B> poor man's "encryption".</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tds7ResultToken()">tds7ResultToken</A></B>()</CODE>
<BR>
Process a TDS 7.0 result set token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsCapabilityToken()">tdsCapabilityToken</A></B>()</CODE>
<BR>
Processes a TDS 5.0 capability token.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsColumnInfoToken()">tdsColumnInfoToken</A></B>()</CODE>
<BR>
Process a column infomation token.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsControlToken()">tdsControlToken</A></B>()</CODE>
<BR>
Process a control token (function unknown).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsDoneToken()">tdsDoneToken</A></B>()</CODE>
<BR>
Process a DONE, DONEINPROC or DONEPROC token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsEnvChangeToken()">tdsEnvChangeToken</A></B>()</CODE>
<BR>
Process an environment change packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsErrorToken()">tdsErrorToken</A></B>()</CODE>
<BR>
Process a TD4/TDS7 error or informational message.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsInvalidToken()">tdsInvalidToken</A></B>()</CODE>
<BR>
Report unsupported TDS token in input stream.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsLoginAckToken()">tdsLoginAckToken</A></B>()</CODE>
<BR>
Process a login acknowledgement packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsNtlmAuthToken()">tdsNtlmAuthToken</A></B>()</CODE>
<BR>
Process a NTLM Authentication challenge.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsOffsetsToken()">tdsOffsetsToken</A></B>()</CODE>
<BR>
Process offsets token.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsOrderByToken()">tdsOrderByToken</A></B>()</CODE>
<BR>
Process an order by token.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsOutputParamToken()">tdsOutputParamToken</A></B>()</CODE>
<BR>
Process output parameters.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsProcIdToken()">tdsProcIdToken</A></B>()</CODE>
<BR>
Process procedure ID token.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsReturnStatusToken()">tdsReturnStatusToken</A></B>()</CODE>
<BR>
Process stored procedure return status token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsRowToken()">tdsRowToken</A></B>()</CODE>
<BR>
Process a row data token.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#tdsTableNameToken()">tdsTableNameToken</A></B>()</CODE>
<BR>
Process a table name token.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>private void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#wait(int)">wait</A></B>(int timeOut)</CODE>
<BR>
Waits for the first byte of the server response.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Methods inherited from class java.lang.Object</B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Field Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="MIN_PKT_SIZE"><!-- --></A><H3>
MIN_PKT_SIZE</H3>
<PRE>
public static final int <B>MIN_PKT_SIZE</B></PRE>
<DL>
<DD>Minimum network packet size.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.MIN_PKT_SIZE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="DEFAULT_MIN_PKT_SIZE_TDS70"><!-- --></A><H3>
DEFAULT_MIN_PKT_SIZE_TDS70</H3>
<PRE>
public static final int <B>DEFAULT_MIN_PKT_SIZE_TDS70</B></PRE>
<DL>
<DD>Default minimum network packet size for TDS 7.0 and newer.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DEFAULT_MIN_PKT_SIZE_TDS70">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="MAX_PKT_SIZE"><!-- --></A><H3>
MAX_PKT_SIZE</H3>
<PRE>
public static final int <B>MAX_PKT_SIZE</B></PRE>
<DL>
<DD>Maximum network packet size.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.MAX_PKT_SIZE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="PKT_HDR_LEN"><!-- --></A><H3>
PKT_HDR_LEN</H3>
<PRE>
public static final int <B>PKT_HDR_LEN</B></PRE>
<DL>
<DD>The size of the packet header.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.PKT_HDR_LEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="QUERY_PKT"><!-- --></A><H3>
QUERY_PKT</H3>
<PRE>
public static final byte <B>QUERY_PKT</B></PRE>
<DL>
<DD>TDS 4.2 or 7.0 Query packet.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.QUERY_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="LOGIN_PKT"><!-- --></A><H3>
LOGIN_PKT</H3>
<PRE>
public static final byte <B>LOGIN_PKT</B></PRE>
<DL>
<DD>TDS 4.2 or 5.0 Login packet.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.LOGIN_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="RPC_PKT"><!-- --></A><H3>
RPC_PKT</H3>
<PRE>
public static final byte <B>RPC_PKT</B></PRE>
<DL>
<DD>TDS Remote Procedure Call.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.RPC_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="REPLY_PKT"><!-- --></A><H3>
REPLY_PKT</H3>
<PRE>
public static final byte <B>REPLY_PKT</B></PRE>
<DL>
<DD>TDS Reply packet.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.REPLY_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="CANCEL_PKT"><!-- --></A><H3>
CANCEL_PKT</H3>
<PRE>
public static final byte <B>CANCEL_PKT</B></PRE>
<DL>
<DD>TDS Cancel packet.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.CANCEL_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="MSDTC_PKT"><!-- --></A><H3>
MSDTC_PKT</H3>
<PRE>
public static final byte <B>MSDTC_PKT</B></PRE>
<DL>
<DD>TDS MSDTC packet.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.MSDTC_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SYBQUERY_PKT"><!-- --></A><H3>
SYBQUERY_PKT</H3>
<PRE>
public static final byte <B>SYBQUERY_PKT</B></PRE>
<DL>
<DD>TDS 5.0 Query packet.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYBQUERY_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="MSLOGIN_PKT"><!-- --></A><H3>
MSLOGIN_PKT</H3>
<PRE>
public static final byte <B>MSLOGIN_PKT</B></PRE>
<DL>
<DD>TDS 7.0 Login packet.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.MSLOGIN_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="NTLMAUTH_PKT"><!-- --></A><H3>
NTLMAUTH_PKT</H3>
<PRE>
public static final byte <B>NTLMAUTH_PKT</B></PRE>
<DL>
<DD>TDS 7.0 NTLM Authentication packet.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.NTLMAUTH_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="PRELOGIN_PKT"><!-- --></A><H3>
PRELOGIN_PKT</H3>
<PRE>
public static final byte <B>PRELOGIN_PKT</B></PRE>
<DL>
<DD>SQL 2000 prelogin negotiation packet.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.PRELOGIN_PKT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SSL_ENCRYPT_LOGIN"><!-- --></A><H3>
SSL_ENCRYPT_LOGIN</H3>
<PRE>
public static final int <B>SSL_ENCRYPT_LOGIN</B></PRE>
<DL>
<DD>SSL Mode - Login packet must be encrypted.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SSL_ENCRYPT_LOGIN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SSL_CLIENT_FORCE_ENCRYPT"><!-- --></A><H3>
SSL_CLIENT_FORCE_ENCRYPT</H3>
<PRE>
public static final int <B>SSL_CLIENT_FORCE_ENCRYPT</B></PRE>
<DL>
<DD>SSL Mode - Client requested force encryption.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SSL_CLIENT_FORCE_ENCRYPT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SSL_NO_ENCRYPT"><!-- --></A><H3>
SSL_NO_ENCRYPT</H3>
<PRE>
public static final int <B>SSL_NO_ENCRYPT</B></PRE>
<DL>
<DD>SSL Mode - No server certificate installed.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SSL_NO_ENCRYPT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SSL_SERVER_FORCE_ENCRYPT"><!-- --></A><H3>
SSL_SERVER_FORCE_ENCRYPT</H3>
<PRE>
public static final int <B>SSL_SERVER_FORCE_ENCRYPT</B></PRE>
<DL>
<DD>SSL Mode - Server requested force encryption.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SSL_SERVER_FORCE_ENCRYPT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS5_PARAMFMT2_TOKEN"><!-- --></A><H3>
TDS5_PARAMFMT2_TOKEN</H3>
<PRE>
private static final byte <B>TDS5_PARAMFMT2_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 Parameter format token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_PARAMFMT2_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_LANG_TOKEN"><!-- --></A><H3>
TDS_LANG_TOKEN</H3>
<PRE>
private static final byte <B>TDS_LANG_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 Language token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_LANG_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS5_WIDE_RESULT"><!-- --></A><H3>
TDS5_WIDE_RESULT</H3>
<PRE>
private static final byte <B>TDS5_WIDE_RESULT</B></PRE>
<DL>
<DD>TSD 5.0 Wide result set token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_WIDE_RESULT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_CLOSE_TOKEN"><!-- --></A><H3>
TDS_CLOSE_TOKEN</H3>
<PRE>
private static final byte <B>TDS_CLOSE_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 Close token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_CLOSE_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_OFFSETS_TOKEN"><!-- --></A><H3>
TDS_OFFSETS_TOKEN</H3>
<PRE>
private static final byte <B>TDS_OFFSETS_TOKEN</B></PRE>
<DL>
<DD>TDS DBLIB Offsets token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_OFFSETS_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_RETURNSTATUS_TOKEN"><!-- --></A><H3>
TDS_RETURNSTATUS_TOKEN</H3>
<PRE>
private static final byte <B>TDS_RETURNSTATUS_TOKEN</B></PRE>
<DL>
<DD>TDS Procedure call return status token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_RETURNSTATUS_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_PROCID"><!-- --></A><H3>
TDS_PROCID</H3>
<PRE>
private static final byte <B>TDS_PROCID</B></PRE>
<DL>
<DD>TDS Procedure ID token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_PROCID">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS7_RESULT_TOKEN"><!-- --></A><H3>
TDS7_RESULT_TOKEN</H3>
<PRE>
private static final byte <B>TDS7_RESULT_TOKEN</B></PRE>
<DL>
<DD>TDS 7.0 Result set column meta data token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS7_RESULT_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS7_COMP_RESULT_TOKEN"><!-- --></A><H3>
TDS7_COMP_RESULT_TOKEN</H3>
<PRE>
private static final byte <B>TDS7_COMP_RESULT_TOKEN</B></PRE>
<DL>
<DD>TDS 7.0 Computed Result set column meta data token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS7_COMP_RESULT_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_COLNAME_TOKEN"><!-- --></A><H3>
TDS_COLNAME_TOKEN</H3>
<PRE>
private static final byte <B>TDS_COLNAME_TOKEN</B></PRE>
<DL>
<DD>TDS 4.2 Column names token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COLNAME_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_COLFMT_TOKEN"><!-- --></A><H3>
TDS_COLFMT_TOKEN</H3>
<PRE>
private static final byte <B>TDS_COLFMT_TOKEN</B></PRE>
<DL>
<DD>TDS 4.2 Column meta data token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COLFMT_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_TABNAME_TOKEN"><!-- --></A><H3>
TDS_TABNAME_TOKEN</H3>
<PRE>
private static final byte <B>TDS_TABNAME_TOKEN</B></PRE>
<DL>
<DD>TDS Table name token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_TABNAME_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_COLINFO_TOKEN"><!-- --></A><H3>
TDS_COLINFO_TOKEN</H3>
<PRE>
private static final byte <B>TDS_COLINFO_TOKEN</B></PRE>
<DL>
<DD>TDS Cursor results column infomation token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COLINFO_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_OPTIONCMD_TOKEN"><!-- --></A><H3>
TDS_OPTIONCMD_TOKEN</H3>
<PRE>
private static final byte <B>TDS_OPTIONCMD_TOKEN</B></PRE>
<DL>
<DD>TDS Optional command token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_OPTIONCMD_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_COMP_NAMES_TOKEN"><!-- --></A><H3>
TDS_COMP_NAMES_TOKEN</H3>
<PRE>
private static final byte <B>TDS_COMP_NAMES_TOKEN</B></PRE>
<DL>
<DD>TDS Computed result set names token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COMP_NAMES_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_COMP_RESULT_TOKEN"><!-- --></A><H3>
TDS_COMP_RESULT_TOKEN</H3>
<PRE>
private static final byte <B>TDS_COMP_RESULT_TOKEN</B></PRE>
<DL>
<DD>TDS Computed result set token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_COMP_RESULT_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ORDER_TOKEN"><!-- --></A><H3>
TDS_ORDER_TOKEN</H3>
<PRE>
private static final byte <B>TDS_ORDER_TOKEN</B></PRE>
<DL>
<DD>TDS Order by columns token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ORDER_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ERROR_TOKEN"><!-- --></A><H3>
TDS_ERROR_TOKEN</H3>
<PRE>
private static final byte <B>TDS_ERROR_TOKEN</B></PRE>
<DL>
<DD>TDS error result token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ERROR_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_INFO_TOKEN"><!-- --></A><H3>
TDS_INFO_TOKEN</H3>
<PRE>
private static final byte <B>TDS_INFO_TOKEN</B></PRE>
<DL>
<DD>TDS Information message token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_INFO_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_PARAM_TOKEN"><!-- --></A><H3>
TDS_PARAM_TOKEN</H3>
<PRE>
private static final byte <B>TDS_PARAM_TOKEN</B></PRE>
<DL>
<DD>TDS Output parameter value token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_PARAM_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_LOGINACK_TOKEN"><!-- --></A><H3>
TDS_LOGINACK_TOKEN</H3>
<PRE>
private static final byte <B>TDS_LOGINACK_TOKEN</B></PRE>
<DL>
<DD>TDS Login acknowledgement token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_LOGINACK_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_CONTROL_TOKEN"><!-- --></A><H3>
TDS_CONTROL_TOKEN</H3>
<PRE>
private static final byte <B>TDS_CONTROL_TOKEN</B></PRE>
<DL>
<DD>TDS control token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_CONTROL_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ROW_TOKEN"><!-- --></A><H3>
TDS_ROW_TOKEN</H3>
<PRE>
private static final byte <B>TDS_ROW_TOKEN</B></PRE>
<DL>
<DD>TDS Result set data row token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ROW_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ALTROW"><!-- --></A><H3>
TDS_ALTROW</H3>
<PRE>
private static final byte <B>TDS_ALTROW</B></PRE>
<DL>
<DD>TDS Computed result set data row token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ALTROW">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS5_PARAMS_TOKEN"><!-- --></A><H3>
TDS5_PARAMS_TOKEN</H3>
<PRE>
private static final byte <B>TDS5_PARAMS_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 parameter value token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_PARAMS_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_CAP_TOKEN"><!-- --></A><H3>
TDS_CAP_TOKEN</H3>
<PRE>
private static final byte <B>TDS_CAP_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 capabilities token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_CAP_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ENVCHANGE_TOKEN"><!-- --></A><H3>
TDS_ENVCHANGE_TOKEN</H3>
<PRE>
private static final byte <B>TDS_ENVCHANGE_TOKEN</B></PRE>
<DL>
<DD>TDS environment change token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENVCHANGE_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_MSG50_TOKEN"><!-- --></A><H3>
TDS_MSG50_TOKEN</H3>
<PRE>
private static final byte <B>TDS_MSG50_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 message token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_MSG50_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_DBRPC_TOKEN"><!-- --></A><H3>
TDS_DBRPC_TOKEN</H3>
<PRE>
private static final byte <B>TDS_DBRPC_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 RPC token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_DBRPC_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS5_DYNAMIC_TOKEN"><!-- --></A><H3>
TDS5_DYNAMIC_TOKEN</H3>
<PRE>
private static final byte <B>TDS5_DYNAMIC_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 Dynamic SQL token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_DYNAMIC_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS5_PARAMFMT_TOKEN"><!-- --></A><H3>
TDS5_PARAMFMT_TOKEN</H3>
<PRE>
private static final byte <B>TDS5_PARAMFMT_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 parameter descriptor token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS5_PARAMFMT_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_AUTH_TOKEN"><!-- --></A><H3>
TDS_AUTH_TOKEN</H3>
<PRE>
private static final byte <B>TDS_AUTH_TOKEN</B></PRE>
<DL>
<DD>TDS 7.0 NTLM authentication challenge token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_AUTH_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_RESULT_TOKEN"><!-- --></A><H3>
TDS_RESULT_TOKEN</H3>
<PRE>
private static final byte <B>TDS_RESULT_TOKEN</B></PRE>
<DL>
<DD>TDS 5.0 Result set column meta data token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_RESULT_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_DONE_TOKEN"><!-- --></A><H3>
TDS_DONE_TOKEN</H3>
<PRE>
private static final byte <B>TDS_DONE_TOKEN</B></PRE>
<DL>
<DD>TDS done token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_DONE_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_DONEPROC_TOKEN"><!-- --></A><H3>
TDS_DONEPROC_TOKEN</H3>
<PRE>
private static final byte <B>TDS_DONEPROC_TOKEN</B></PRE>
<DL>
<DD>TDS done procedure token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_DONEPROC_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_DONEINPROC_TOKEN"><!-- --></A><H3>
TDS_DONEINPROC_TOKEN</H3>
<PRE>
private static final byte <B>TDS_DONEINPROC_TOKEN</B></PRE>
<DL>
<DD>TDS done in procedure token.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_DONEINPROC_TOKEN">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ENV_DATABASE"><!-- --></A><H3>
TDS_ENV_DATABASE</H3>
<PRE>
private static final byte <B>TDS_ENV_DATABASE</B></PRE>
<DL>
<DD>Environment change: database changed.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_DATABASE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ENV_LANG"><!-- --></A><H3>
TDS_ENV_LANG</H3>
<PRE>
private static final byte <B>TDS_ENV_LANG</B></PRE>
<DL>
<DD>Environment change: language changed.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_LANG">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ENV_CHARSET"><!-- --></A><H3>
TDS_ENV_CHARSET</H3>
<PRE>
private static final byte <B>TDS_ENV_CHARSET</B></PRE>
<DL>
<DD>Environment change: charset changed.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_CHARSET">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ENV_PACKSIZE"><!-- --></A><H3>
TDS_ENV_PACKSIZE</H3>
<PRE>
private static final byte <B>TDS_ENV_PACKSIZE</B></PRE>
<DL>
<DD>Environment change: network packet size changed.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_PACKSIZE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ENV_LCID"><!-- --></A><H3>
TDS_ENV_LCID</H3>
<PRE>
private static final byte <B>TDS_ENV_LCID</B></PRE>
<DL>
<DD>Environment change: locale changed.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_LCID">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TDS_ENV_SQLCOLLATION"><!-- --></A><H3>
TDS_ENV_SQLCOLLATION</H3>
<PRE>
private static final byte <B>TDS_ENV_SQLCOLLATION</B></PRE>
<DL>
<DD>Environment change: TDS 8 collation changed.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TDS_ENV_SQLCOLLATION">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="EMPTY_PARAMETER_INFO"><!-- --></A><H3>
EMPTY_PARAMETER_INFO</H3>
<PRE>
private static final <A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] <B>EMPTY_PARAMETER_INFO</B></PRE>
<DL>
<DD>Used to optimize the <A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#getParameters()"><CODE>getParameters()</CODE></A> call
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="DONE_MORE_RESULTS"><!-- --></A><H3>
DONE_MORE_RESULTS</H3>
<PRE>
private static final byte <B>DONE_MORE_RESULTS</B></PRE>
<DL>
<DD>Done: more results are expected.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_MORE_RESULTS">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="DONE_ERROR"><!-- --></A><H3>
DONE_ERROR</H3>
<PRE>
private static final byte <B>DONE_ERROR</B></PRE>
<DL>
<DD>Done: command caused an error.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_ERROR">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="DONE_ROW_COUNT"><!-- --></A><H3>
DONE_ROW_COUNT</H3>
<PRE>
private static final byte <B>DONE_ROW_COUNT</B></PRE>
<DL>
<DD>Done: There is a valid row count.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_ROW_COUNT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="DONE_CANCEL"><!-- --></A><H3>
DONE_CANCEL</H3>
<PRE>
static final byte <B>DONE_CANCEL</B></PRE>
<DL>
<DD>Done: Cancel acknowledgement.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_CANCEL">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="DONE_END_OF_RESPONSE"><!-- --></A><H3>
DONE_END_OF_RESPONSE</H3>
<PRE>
private static final byte <B>DONE_END_OF_RESPONSE</B></PRE>
<DL>
<DD>Done: Response terminator (if more than one request packet is sent, each
response is terminated by a DONE packet with this flag set).
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.DONE_END_OF_RESPONSE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="UNPREPARED"><!-- --></A><H3>
UNPREPARED</H3>
<PRE>
public static final int <B>UNPREPARED</B></PRE>
<DL>
<DD>Do not prepare SQL
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.UNPREPARED">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TEMPORARY_STORED_PROCEDURES"><!-- --></A><H3>
TEMPORARY_STORED_PROCEDURES</H3>
<PRE>
public static final int <B>TEMPORARY_STORED_PROCEDURES</B></PRE>
<DL>
<DD>Prepare SQL using temporary stored procedures
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TEMPORARY_STORED_PROCEDURES">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="EXECUTE_SQL"><!-- --></A><H3>
EXECUTE_SQL</H3>
<PRE>
public static final int <B>EXECUTE_SQL</B></PRE>
<DL>
<DD>Prepare SQL using sp_executesql
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.EXECUTE_SQL">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="PREPARE"><!-- --></A><H3>
PREPARE</H3>
<PRE>
public static final int <B>PREPARE</B></PRE>
<DL>
<DD>Prepare SQL using sp_prepare and sp_execute
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.PREPARE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SYB_LONGDATA"><!-- --></A><H3>
SYB_LONGDATA</H3>
<PRE>
static final int <B>SYB_LONGDATA</B></PRE>
<DL>
<DD>Sybase char and binary > 255.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_LONGDATA">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SYB_DATETIME"><!-- --></A><H3>
SYB_DATETIME</H3>
<PRE>
static final int <B>SYB_DATETIME</B></PRE>
<DL>
<DD>Sybase date and time data types.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_DATETIME">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SYB_BITNULL"><!-- --></A><H3>
SYB_BITNULL</H3>
<PRE>
static final int <B>SYB_BITNULL</B></PRE>
<DL>
<DD>Sybase nullable bit type.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_BITNULL">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SYB_EXTCOLINFO"><!-- --></A><H3>
SYB_EXTCOLINFO</H3>
<PRE>
static final int <B>SYB_EXTCOLINFO</B></PRE>
<DL>
<DD>Sybase extended column meta data.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_EXTCOLINFO">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SYB_UNICODE"><!-- --></A><H3>
SYB_UNICODE</H3>
<PRE>
static final int <B>SYB_UNICODE</B></PRE>
<DL>
<DD>Sybase univarchar etc.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_UNICODE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SYB_UNITEXT"><!-- --></A><H3>
SYB_UNITEXT</H3>
<PRE>
static final int <B>SYB_UNITEXT</B></PRE>
<DL>
<DD>Sybase 15+ unitext.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_UNITEXT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="SYB_BIGINT"><!-- --></A><H3>
SYB_BIGINT</H3>
<PRE>
static final int <B>SYB_BIGINT</B></PRE>
<DL>
<DD>Sybase 15+ bigint.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.SYB_BIGINT">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ASYNC_CANCEL"><!-- --></A><H3>
ASYNC_CANCEL</H3>
<PRE>
private static final int <B>ASYNC_CANCEL</B></PRE>
<DL>
<DD>Cancel has been generated by <code>Statement.cancel()</code>.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.ASYNC_CANCEL">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TIMEOUT_CANCEL"><!-- --></A><H3>
TIMEOUT_CANCEL</H3>
<PRE>
private static final int <B>TIMEOUT_CANCEL</B></PRE>
<DL>
<DD>Cancel has been generated by a query timeout.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#net.sourceforge.jtds.jdbc.TdsCore.TIMEOUT_CANCEL">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="tds8SpNames"><!-- --></A><H3>
tds8SpNames</H3>
<PRE>
private static java.util.HashMap <B>tds8SpNames</B></PRE>
<DL>
<DD>Map of system stored procedures that have shortcuts in TDS8.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="hostName"><!-- --></A><H3>
hostName</H3>
<PRE>
private static java.lang.String <B>hostName</B></PRE>
<DL>
<DD>Name of the client host (it can take quite a while to find it out if DNS is configured incorrectly).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="sspiJNIClient"><!-- --></A><H3>
sspiJNIClient</H3>
<PRE>
private static <A HREF="../../../../net/sourceforge/jtds/util/SSPIJNIClient.html" title="class in net.sourceforge.jtds.util">SSPIJNIClient</A> <B>sspiJNIClient</B></PRE>
<DL>
<DD>A reference to ntlm.SSPIJNIClient.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="connection"><!-- --></A><H3>
connection</H3>
<PRE>
private final <A HREF="../../../../net/sourceforge/jtds/jdbc/ConnectionJDBC2.html" title="class in net.sourceforge.jtds.jdbc">ConnectionJDBC2</A> <B>connection</B></PRE>
<DL>
<DD>The Connection object that created this object.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="tdsVersion"><!-- --></A><H3>
tdsVersion</H3>
<PRE>
private int <B>tdsVersion</B></PRE>
<DL>
<DD>The TDS version being supported by this connection.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="serverType"><!-- --></A><H3>
serverType</H3>
<PRE>
private final int <B>serverType</B></PRE>
<DL>
<DD>The make of SQL Server (Sybase/Microsoft).
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="socket"><!-- --></A><H3>
socket</H3>
<PRE>
private final <A HREF="../../../../net/sourceforge/jtds/jdbc/SharedSocket.html" title="class in net.sourceforge.jtds.jdbc">SharedSocket</A> <B>socket</B></PRE>
<DL>
<DD>The Shared network socket object.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="out"><!-- --></A><H3>
out</H3>
<PRE>
private final <A HREF="../../../../net/sourceforge/jtds/jdbc/RequestStream.html" title="class in net.sourceforge.jtds.jdbc">RequestStream</A> <B>out</B></PRE>
<DL>
<DD>The output server request stream.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="in"><!-- --></A><H3>
in</H3>
<PRE>
private final <A HREF="../../../../net/sourceforge/jtds/jdbc/ResponseStream.html" title="class in net.sourceforge.jtds.jdbc">ResponseStream</A> <B>in</B></PRE>
<DL>
<DD>The input server response stream.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="endOfResponse"><!-- --></A><H3>
endOfResponse</H3>
<PRE>
private boolean <B>endOfResponse</B></PRE>
<DL>
<DD>True if the server response is fully read.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="endOfResults"><!-- --></A><H3>
endOfResults</H3>
<PRE>
private boolean <B>endOfResults</B></PRE>
<DL>
<DD>True if the current result set is at end of file.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="columns"><!-- --></A><H3>
columns</H3>
<PRE>
private <A HREF="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</A>[] <B>columns</B></PRE>
<DL>
<DD>The array of column meta data objects for this result set.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="rowData"><!-- --></A><H3>
rowData</H3>
<PRE>
private java.lang.Object[] <B>rowData</B></PRE>
<DL>
<DD>The array of column data objects in the current row.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="tables"><!-- --></A><H3>
tables</H3>
<PRE>
private <A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TableMetaData</A>[] <B>tables</B></PRE>
<DL>
<DD>The array of table names associated with this result.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="currentToken"><!-- --></A><H3>
currentToken</H3>
<PRE>
private <A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.TdsToken.html" title="class in net.sourceforge.jtds.jdbc">TdsCore.TdsToken</A> <B>currentToken</B></PRE>
<DL>
<DD>The descriptor object for the current TDS token.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="returnStatus"><!-- --></A><H3>
returnStatus</H3>
<PRE>
private java.lang.Integer <B>returnStatus</B></PRE>
<DL>
<DD>The stored procedure return status.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="returnParam"><!-- --></A><H3>
returnParam</H3>
<PRE>
private <A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A> <B>returnParam</B></PRE>
<DL>
<DD>The return parameter meta data object for the current procedure call.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="parameters"><!-- --></A><H3>
parameters</H3>
<PRE>
private <A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] <B>parameters</B></PRE>
<DL>
<DD>The array of parameter meta data objects for the current procedure call.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="nextParam"><!-- --></A><H3>
nextParam</H3>
<PRE>
private int <B>nextParam</B></PRE>
<DL>
<DD>The index of the next output parameter to populate.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="messages"><!-- --></A><H3>
messages</H3>
<PRE>
private final <A HREF="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</A> <B>messages</B></PRE>
<DL>
<DD>The head of the diagnostic messages chain.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="isClosed"><!-- --></A><H3>
isClosed</H3>
<PRE>
private boolean <B>isClosed</B></PRE>
<DL>
<DD>Indicates that this object is closed.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="ntlmAuthSSO"><!-- --></A><H3>
ntlmAuthSSO</H3>
<PRE>
private boolean <B>ntlmAuthSSO</B></PRE>
<DL>
<DD>Flag that indicates if logon() should try to use Windows Single Sign On using SSPI.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="fatalError"><!-- --></A><H3>
fatalError</H3>
<PRE>
private boolean <B>fatalError</B></PRE>
<DL>
<DD>Indicates that a fatal error has occured and the connection will close.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="connectionLock"><!-- --></A><H3>
connectionLock</H3>
<PRE>
private <A HREF="../../../../net/sourceforge/jtds/jdbc/Semaphore.html" title="class in net.sourceforge.jtds.jdbc">Semaphore</A> <B>connectionLock</B></PRE>
<DL>
<DD>Mutual exclusion lock on connection.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="inBatch"><!-- --></A><H3>
inBatch</H3>
<PRE>
private boolean <B>inBatch</B></PRE>
<DL>
<DD>Indicates processing a batch.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="sslMode"><!-- --></A><H3>
sslMode</H3>
<PRE>
private int <B>sslMode</B></PRE>
<DL>
<DD>Indicates type of SSL connection.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="cancelPending"><!-- --></A><H3>
cancelPending</H3>
<PRE>
private boolean <B>cancelPending</B></PRE>
<DL>
<DD>Indicates pending cancel that needs to be cleared.
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="cancelMonitor"><!-- --></A><H3>
cancelMonitor</H3>
<PRE>
private final int[] <B>cancelMonitor</B></PRE>
<DL>
<DD>Synchronization monitor for <A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.html#cancelPending"><CODE>cancelPending</CODE></A>.
<P>
<DL>
</DL>
</DL>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="TdsCore(net.sourceforge.jtds.jdbc.ConnectionJDBC2, net.sourceforge.jtds.jdbc.SQLDiagnostic)"><!-- --></A><H3>
TdsCore</H3>
<PRE>
<B>TdsCore</B>(<A HREF="../../../../net/sourceforge/jtds/jdbc/ConnectionJDBC2.html" title="class in net.sourceforge.jtds.jdbc">ConnectionJDBC2</A> connection,
<A HREF="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</A> messages)</PRE>
<DL>
<DD>Construct a TdsCore object.
<P>
<DT><B>Parameters:</B><DD><CODE>connection</CODE> - The connection which owns this object.<DD><CODE>messages</CODE> - The SQLDiagnostic messages chain.</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="checkOpen()"><!-- --></A><H3>
checkOpen</H3>
<PRE>
private void <B>checkOpen</B>()
throws java.sql.SQLException</PRE>
<DL>
<DD>Check that the connection is still open.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if the connection is closed</DL>
</DD>
</DL>
<HR>
<A NAME="getTdsVersion()"><!-- --></A><H3>
getTdsVersion</H3>
<PRE>
int <B>getTdsVersion</B>()</PRE>
<DL>
<DD>Retrieve the TDS protocol version.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>The protocol version as an <code>int</code>.</DL>
</DD>
</DL>
<HR>
<A NAME="getColumns()"><!-- --></A><H3>
getColumns</H3>
<PRE>
<A HREF="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</A>[] <B>getColumns</B>()</PRE>
<DL>
<DD>Retrieve the current result set column descriptors.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>The column descriptors as a <code>ColInfo[]</code>.</DL>
</DD>
</DL>
<HR>
<A NAME="setColumns(net.sourceforge.jtds.jdbc.ColInfo[])"><!-- --></A><H3>
setColumns</H3>
<PRE>
void <B>setColumns</B>(<A HREF="../../../../net/sourceforge/jtds/jdbc/ColInfo.html" title="class in net.sourceforge.jtds.jdbc">ColInfo</A>[] columns)</PRE>
<DL>
<DD>Sets the column meta data.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>columns</CODE> - the column descriptor array</DL>
</DD>
</DL>
<HR>
<A NAME="getParameters()"><!-- --></A><H3>
getParameters</H3>
<PRE>
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] <B>getParameters</B>()</PRE>
<DL>
<DD>Retrieve the parameter meta data from a Sybase prepare.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>The parameter descriptors as a <code>ParamInfo[]</code>.</DL>
</DD>
</DL>
<HR>
<A NAME="getRowData()"><!-- --></A><H3>
getRowData</H3>
<PRE>
java.lang.Object[] <B>getRowData</B>()</PRE>
<DL>
<DD>Retrieve the current result set data items.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the row data as an <code>Object</code> array</DL>
</DD>
</DL>
<HR>
<A NAME="negotiateSSL(java.lang.String, java.lang.String)"><!-- --></A><H3>
negotiateSSL</H3>
<PRE>
void <B>negotiateSSL</B>(java.lang.String instance,
java.lang.String ssl)
throws java.io.IOException,
java.sql.SQLException</PRE>
<DL>
<DD>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>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>instance</CODE> - The server instance name.<DD><CODE>ssl</CODE> - The SSL URL property value.
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<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><H3>
login</H3>
<PRE>
void <B>login</B>(java.lang.String serverName,
java.lang.String database,
java.lang.String user,
java.lang.String password,
java.lang.String domain,
java.lang.String charset,
java.lang.String appName,
java.lang.String progName,
java.lang.String wsid,
java.lang.String language,
java.lang.String macAddress,
int packetSize)
throws java.sql.SQLException</PRE>
<DL>
<DD>Login to the SQL Server.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>serverName</CODE> - server host name<DD><CODE>database</CODE> - required database<DD><CODE>user</CODE> - user name<DD><CODE>password</CODE> - user password<DD><CODE>domain</CODE> - Windows NT domain (or null)<DD><CODE>charset</CODE> - required server character set<DD><CODE>appName</CODE> - application name<DD><CODE>progName</CODE> - library name<DD><CODE>wsid</CODE> - workstation ID<DD><CODE>language</CODE> - language to use for server messages<DD><CODE>macAddress</CODE> - client network MAC address<DD><CODE>packetSize</CODE> - required network packet size
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an error occurs</DL>
</DD>
</DL>
<HR>
<A NAME="getMoreResults()"><!-- --></A><H3>
getMoreResults</H3>
<PRE>
boolean <B>getMoreResults</B>()
throws java.sql.SQLException</PRE>
<DL>
<DD>Get the next result set or update count from the TDS stream.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>boolean</code> if the next item is a result set.
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an I/O or protocol error occurs; server errors
are queued up and not thrown</DL>
</DD>
</DL>
<HR>
<A NAME="isResultSet()"><!-- --></A><H3>
isResultSet</H3>
<PRE>
boolean <B>isResultSet</B>()</PRE>
<DL>
<DD>Retrieve the status of the next result item.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>boolean</code> true if the next item is a result set.</DL>
</DD>
</DL>
<HR>
<A NAME="isRowData()"><!-- --></A><H3>
isRowData</H3>
<PRE>
boolean <B>isRowData</B>()</PRE>
<DL>
<DD>Retrieve the status of the next result item.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>boolean</code> true if the next item is row data.</DL>
</DD>
</DL>
<HR>
<A NAME="isUpdateCount()"><!-- --></A><H3>
isUpdateCount</H3>
<PRE>
boolean <B>isUpdateCount</B>()</PRE>
<DL>
<DD>Retrieve the status of the next result item.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>boolean</code> true if the next item is an update count.</DL>
</DD>
</DL>
<HR>
<A NAME="getUpdateCount()"><!-- --></A><H3>
getUpdateCount</H3>
<PRE>
int <B>getUpdateCount</B>()</PRE>
<DL>
<DD>Retrieve the update count from the current TDS token.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>The update count as an <code>int</code>.</DL>
</DD>
</DL>
<HR>
<A NAME="isEndOfResponse()"><!-- --></A><H3>
isEndOfResponse</H3>
<PRE>
boolean <B>isEndOfResponse</B>()</PRE>
<DL>
<DD>Retrieve the status of the response stream.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>boolean</code> true if the response has been entirely consumed</DL>
</DD>
</DL>
<HR>
<A NAME="clearResponseQueue()"><!-- --></A><H3>
clearResponseQueue</H3>
<PRE>
void <B>clearResponseQueue</B>()
throws java.sql.SQLException</PRE>
<DL>
<DD>Empty the server response queue.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an error occurs</DL>
</DD>
</DL>
<HR>
<A NAME="consumeOneResponse()"><!-- --></A><H3>
consumeOneResponse</H3>
<PRE>
void <B>consumeOneResponse</B>()
throws java.sql.SQLException</PRE>
<DL>
<DD>Consume packets from the server response queue up to (and including) the
first response terminator.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an I/O or protocol error occurs; server errors
are queued up and not thrown</DL>
</DD>
</DL>
<HR>
<A NAME="getNextRow()"><!-- --></A><H3>
getNextRow</H3>
<PRE>
boolean <B>getNextRow</B>()
throws java.sql.SQLException</PRE>
<DL>
<DD>Retrieve the next data row from the result set.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>false</code> if at the end of results, <code>true</code>
otherwise
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an I/O or protocol error occurs; server errors
are queued up and not thrown</DL>
</DD>
</DL>
<HR>
<A NAME="isDataInResultSet()"><!-- --></A><H3>
isDataInResultSet</H3>
<PRE>
boolean <B>isDataInResultSet</B>()
throws java.sql.SQLException</PRE>
<DL>
<DD>Retrieve the status of result set.
<p>
This does a quick read ahead and is needed to support the isLast()
method in the ResultSet.
<P>
<DD><DL>
<DT><B>Returns:</B><DD><code>boolean</code> - <code>true</code> if there is more data
in the result set.
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="getReturnStatus()"><!-- --></A><H3>
getReturnStatus</H3>
<PRE>
java.lang.Integer <B>getReturnStatus</B>()</PRE>
<DL>
<DD>Retrieve the return status for the current stored procedure.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>The return status as an <code>Integer</code>.</DL>
</DD>
</DL>
<HR>
<A NAME="closeConnection()"><!-- --></A><H3>
closeConnection</H3>
<PRE>
void <B>closeConnection</B>()</PRE>
<DL>
<DD>Inform the server that this connection is closing.
<p>
Used by Sybase a no-op for Microsoft.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="close()"><!-- --></A><H3>
close</H3>
<PRE>
void <B>close</B>()
throws java.sql.SQLException</PRE>
<DL>
<DD>Close the <code>TdsCore</code> connection object and associated streams.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="cancel(boolean)"><!-- --></A><H3>
cancel</H3>
<PRE>
void <B>cancel</B>(boolean timeout)</PRE>
<DL>
<DD>Send (only) one cancel packet to the server.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>timeout</CODE> - true if this is a query timeout cancel</DL>
</DD>
</DL>
<HR>
<A NAME="submitSQL(java.lang.String)"><!-- --></A><H3>
submitSQL</H3>
<PRE>
void <B>submitSQL</B>(java.lang.String sql)
throws java.sql.SQLException</PRE>
<DL>
<DD>Submit a simple SQL statement to the server and process all output.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sql</CODE> - the statement to execute
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an error is returned by the server</DL>
</DD>
</DL>
<HR>
<A NAME="startBatch()"><!-- --></A><H3>
startBatch</H3>
<PRE>
void <B>startBatch</B>()</PRE>
<DL>
<DD>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.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="executeSQL(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, int, int, int, boolean)"><!-- --></A><H3>
executeSQL</H3>
<PRE>
void <B>executeSQL</B>(java.lang.String sql,
java.lang.String procName,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] parameters,
boolean noMetaData,
int timeOut,
int maxRows,
int maxFieldSize,
boolean sendNow)
throws java.sql.SQLException</PRE>
<DL>
<DD>Send an SQL statement with optional parameters to the server.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sql</CODE> - SQL statement to execute<DD><CODE>procName</CODE> - stored procedure to execute or <code>null</code><DD><CODE>parameters</CODE> - parameters for call or null<DD><CODE>noMetaData</CODE> - suppress meta data for cursor calls<DD><CODE>timeOut</CODE> - optional query timeout or 0<DD><CODE>maxRows</CODE> - the maximum number of data rows to return (-1 to
leave unaltered)<DD><CODE>maxFieldSize</CODE> - the maximum number of bytes in a column to return
(-1 to leave unaltered)<DD><CODE>sendNow</CODE> - whether to send the request now or not
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an error occurs</DL>
</DD>
</DL>
<HR>
<A NAME="microsoftPrepare(java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, int, int)"><!-- --></A><H3>
microsoftPrepare</H3>
<PRE>
java.lang.String <B>microsoftPrepare</B>(java.lang.String sql,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] params,
boolean needCursor,
int resultSetType,
int resultSetConcurrency)
throws java.sql.SQLException</PRE>
<DL>
<DD>Prepares the SQL for use with Microsoft server.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sql</CODE> - the SQL statement to prepare.<DD><CODE>params</CODE> - the actual parameter list<DD><CODE>needCursor</CODE> - true if a cursorprepare is required<DD><CODE>resultSetType</CODE> - value of the resultSetType parameter when
the Statement was created<DD><CODE>resultSetConcurrency</CODE> - value of the resultSetConcurrency parameter
whenthe Statement was created
<DT><B>Returns:</B><DD>name of the procedure or prepared statement handle.
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="sybasePrepare(java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[])"><!-- --></A><H3>
sybasePrepare</H3>
<PRE>
java.lang.String <B>sybasePrepare</B>(java.lang.String sql,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] params)
throws java.sql.SQLException</PRE>
<DL>
<DD>Creates a light weight stored procedure on a Sybase server.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sql</CODE> - SQL statement to prepare<DD><CODE>params</CODE> - the actual parameter list
<DT><B>Returns:</B><DD>name of the procedure
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an error occurs</DL>
</DD>
</DL>
<HR>
<A NAME="sybaseUnPrepare(java.lang.String)"><!-- --></A><H3>
sybaseUnPrepare</H3>
<PRE>
void <B>sybaseUnPrepare</B>(java.lang.String procName)
throws java.sql.SQLException</PRE>
<DL>
<DD>Drops a Sybase temporary stored procedure.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>procName</CODE> - the temporary procedure name
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an error occurs</DL>
</DD>
</DL>
<HR>
<A NAME="enlistConnection(int, byte[])"><!-- --></A><H3>
enlistConnection</H3>
<PRE>
byte[] <B>enlistConnection</B>(int type,
byte[] oleTranID)
throws java.sql.SQLException</PRE>
<DL>
<DD>Enlist the current connection in a distributed transaction or request the location of the
MSDTC instance controlling the server we are connected to.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>type</CODE> - set to 0 to request TM address or 1 to enlist connection<DD><CODE>oleTranID</CODE> - the 40 OLE transaction ID
<DT><B>Returns:</B><DD>a <code>byte[]</code> array containing the TM address data
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="getBatchCounts(java.util.ArrayList, java.sql.SQLException)"><!-- --></A><H3>
getBatchCounts</H3>
<PRE>
java.sql.SQLException <B>getBatchCounts</B>(java.util.ArrayList counts,
java.sql.SQLException sqlEx)
throws java.sql.SQLException</PRE>
<DL>
<DD>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.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>counts</CODE> - the <code>ArrayList</code> containing the update counts<DD><CODE>sqlEx</CODE> - any previous <code>SQLException</code>(s) encountered
<DT><B>Returns:</B><DD>updated <code>SQLException</code> or <code>null</code> if no
error has yet occurred
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if the connection is closed</DL>
</DD>
</DL>
<HR>
<A NAME="putLoginString(java.lang.String, int)"><!-- --></A><H3>
putLoginString</H3>
<PRE>
private void <B>putLoginString</B>(java.lang.String txt,
int len)
throws java.io.IOException</PRE>
<DL>
<DD>Write a TDS login packet string. Text followed by padding followed
by a byte sized length.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="sendPreLoginPacket(java.lang.String, boolean)"><!-- --></A><H3>
sendPreLoginPacket</H3>
<PRE>
private void <B>sendPreLoginPacket</B>(java.lang.String instance,
boolean forceEncryption)
throws java.io.IOException</PRE>
<DL>
<DD>Send the SQL Server 2000 pre login packet.
<p>Packet contains; netlib version, ssl mode, instance
and process ID.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>instance</CODE> - <DD><CODE>forceEncryption</CODE> -
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="readPreLoginPacket()"><!-- --></A><H3>
readPreLoginPacket</H3>
<PRE>
private int <B>readPreLoginPacket</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process the pre login acknowledgement 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>
<P>
<DD><DL>
<DT><B>Returns:</B><DD>The server side SSL mode.
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<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><H3>
send42LoginPkt</H3>
<PRE>
private void <B>send42LoginPkt</B>(java.lang.String serverName,
java.lang.String user,
java.lang.String password,
java.lang.String charset,
java.lang.String appName,
java.lang.String progName,
java.lang.String wsid,
java.lang.String language,
int packetSize)
throws java.io.IOException</PRE>
<DL>
<DD>TDS 4.2 Login Packet.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>serverName</CODE> - server host name<DD><CODE>user</CODE> - user name<DD><CODE>password</CODE> - user password<DD><CODE>charset</CODE> - required server character set<DD><CODE>appName</CODE> - application name<DD><CODE>progName</CODE> - program name<DD><CODE>wsid</CODE> - workstation ID<DD><CODE>language</CODE> - server language for messages<DD><CODE>packetSize</CODE> - required network packet size
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if an I/O error occurs</DL>
</DD>
</DL>
<HR>
<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><H3>
send50LoginPkt</H3>
<PRE>
private void <B>send50LoginPkt</B>(java.lang.String serverName,
java.lang.String user,
java.lang.String password,
java.lang.String charset,
java.lang.String appName,
java.lang.String progName,
java.lang.String wsid,
java.lang.String language,
int packetSize)
throws java.io.IOException</PRE>
<DL>
<DD>TDS 5.0 Login Packet.
<P>
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>serverName</CODE> - server host name<DD><CODE>user</CODE> - user name<DD><CODE>password</CODE> - user password<DD><CODE>charset</CODE> - required server character set<DD><CODE>appName</CODE> - application name<DD><CODE>progName</CODE> - library name<DD><CODE>wsid</CODE> - workstation ID<DD><CODE>language</CODE> - server language for messages<DD><CODE>packetSize</CODE> - required network packet size
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if an I/O error occurs</DL>
</DD>
</DL>
<HR>
<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><H3>
sendMSLoginPkt</H3>
<PRE>
private void <B>sendMSLoginPkt</B>(java.lang.String serverName,
java.lang.String database,
java.lang.String user,
java.lang.String password,
java.lang.String domain,
java.lang.String appName,
java.lang.String progName,
java.lang.String wsid,
java.lang.String language,
java.lang.String macAddress,
int netPacketSize)
throws java.io.IOException,
java.sql.SQLException</PRE>
<DL>
<DD>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.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>serverName</CODE> - server host name<DD><CODE>database</CODE> - required database<DD><CODE>user</CODE> - user name<DD><CODE>password</CODE> - user password<DD><CODE>domain</CODE> - Windows NT domain (or <code>null</code>)<DD><CODE>appName</CODE> - application name<DD><CODE>progName</CODE> - program name<DD><CODE>wsid</CODE> - workstation ID<DD><CODE>language</CODE> - server language for messages<DD><CODE>macAddress</CODE> - client network MAC address<DD><CODE>netPacketSize</CODE> - TDS packet size to use
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if an I/O error occurs
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="sendNtlmChallengeResponse(byte[], java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>
sendNtlmChallengeResponse</H3>
<PRE>
private void <B>sendNtlmChallengeResponse</B>(byte[] nonce,
java.lang.String user,
java.lang.String password,
java.lang.String domain)
throws java.io.IOException</PRE>
<DL>
<DD>Send the response to the NTLM authentication challenge.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>nonce</CODE> - The secret to hash with password.<DD><CODE>user</CODE> - The user name.<DD><CODE>password</CODE> - The user password.<DD><CODE>domain</CODE> - The Windows NT Dommain.
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="nextToken()"><!-- --></A><H3>
nextToken</H3>
<PRE>
private void <B>nextToken</B>()
throws java.sql.SQLException</PRE>
<DL>
<DD>Read the next TDS token from the response stream.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an I/O or protocol error occurs</DL>
</DD>
</DL>
<HR>
<A NAME="tdsInvalidToken()"><!-- --></A><H3>
tdsInvalidToken</H3>
<PRE>
private void <B>tdsInvalidToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>Report unsupported TDS token in input stream.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tds5ParamFmt2Token()"><!-- --></A><H3>
tds5ParamFmt2Token</H3>
<PRE>
private void <B>tds5ParamFmt2Token</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>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.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tds5WideResultToken()"><!-- --></A><H3>
tds5WideResultToken</H3>
<PRE>
private void <B>tds5WideResultToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>Process Sybase 12+ wide result token which provides enhanced
column meta data.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsReturnStatusToken()"><!-- --></A><H3>
tdsReturnStatusToken</H3>
<PRE>
private void <B>tdsReturnStatusToken</B>()
throws java.io.IOException,
java.sql.SQLException</PRE>
<DL>
<DD>Process stored procedure return status token.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsProcIdToken()"><!-- --></A><H3>
tdsProcIdToken</H3>
<PRE>
private void <B>tdsProcIdToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process procedure ID token.
<p>
Used by DBLIB to obtain the object id of a stored procedure.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsOffsetsToken()"><!-- --></A><H3>
tdsOffsetsToken</H3>
<PRE>
private void <B>tdsOffsetsToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>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>"set offsets from on"</code>.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tds7ResultToken()"><!-- --></A><H3>
tds7ResultToken</H3>
<PRE>
private void <B>tds7ResultToken</B>()
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>
<DL>
<DD>Process a TDS 7.0 result set token.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tds4ColNamesToken()"><!-- --></A><H3>
tds4ColNamesToken</H3>
<PRE>
private void <B>tds4ColNamesToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process a TDS 4.2 column names token.
<p>
Note: Will be followed by a COL_FMT token.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tds4ColFormatToken()"><!-- --></A><H3>
tds4ColFormatToken</H3>
<PRE>
private void <B>tds4ColFormatToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>Process a TDS 4.2 column format token.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsTableNameToken()"><!-- --></A><H3>
tdsTableNameToken</H3>
<PRE>
private void <B>tdsTableNameToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>Process a table name token.
<p> Sent by select for browse or cursor functions.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsColumnInfoToken()"><!-- --></A><H3>
tdsColumnInfoToken</H3>
<PRE>
private void <B>tdsColumnInfoToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>Process a column infomation token.
<p>Sent by select for browse or cursor functions.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsOrderByToken()"><!-- --></A><H3>
tdsOrderByToken</H3>
<PRE>
private void <B>tdsOrderByToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process an order by token.
<p>Sent to describe columns in an order by clause.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsErrorToken()"><!-- --></A><H3>
tdsErrorToken</H3>
<PRE>
private void <B>tdsErrorToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process a TD4/TDS7 error or informational message.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsOutputParamToken()"><!-- --></A><H3>
tdsOutputParamToken</H3>
<PRE>
private void <B>tdsOutputParamToken</B>()
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>
<DL>
<DD>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.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsLoginAckToken()"><!-- --></A><H3>
tdsLoginAckToken</H3>
<PRE>
private void <B>tdsLoginAckToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process a login acknowledgement packet.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsControlToken()"><!-- --></A><H3>
tdsControlToken</H3>
<PRE>
private void <B>tdsControlToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process a control token (function unknown).
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsRowToken()"><!-- --></A><H3>
tdsRowToken</H3>
<PRE>
private void <B>tdsRowToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>Process a row data token.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tds5ParamsToken()"><!-- --></A><H3>
tds5ParamsToken</H3>
<PRE>
private void <B>tds5ParamsToken</B>()
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>
<DL>
<DD>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.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsCapabilityToken()"><!-- --></A><H3>
tdsCapabilityToken</H3>
<PRE>
private void <B>tdsCapabilityToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>Processes a TDS 5.0 capability token.
<p>
Sent after login to describe the server's capabilities.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if an I/O error occurs
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsEnvChangeToken()"><!-- --></A><H3>
tdsEnvChangeToken</H3>
<PRE>
private void <B>tdsEnvChangeToken</B>()
throws java.io.IOException,
java.sql.SQLException</PRE>
<DL>
<DD>Process an environment change packet.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tds5ErrorToken()"><!-- --></A><H3>
tds5ErrorToken</H3>
<PRE>
private void <B>tds5ErrorToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process a TDS 5 error or informational message.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tds5DynamicToken()"><!-- --></A><H3>
tds5DynamicToken</H3>
<PRE>
private void <B>tds5DynamicToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process TDS5 dynamic SQL aknowledgements.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tds5ParamFmtToken()"><!-- --></A><H3>
tds5ParamFmtToken</H3>
<PRE>
private void <B>tds5ParamFmtToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>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.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsNtlmAuthToken()"><!-- --></A><H3>
tdsNtlmAuthToken</H3>
<PRE>
private void <B>tdsNtlmAuthToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>Process a NTLM Authentication challenge.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="getIntFromBuffer(byte[], int)"><!-- --></A><H3>
getIntFromBuffer</H3>
<PRE>
private static int <B>getIntFromBuffer</B>(byte[] buf,
int offset)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getShortFromBuffer(byte[], int)"><!-- --></A><H3>
getShortFromBuffer</H3>
<PRE>
private static int <B>getShortFromBuffer</B>(byte[] buf,
int offset)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="tds5ResultToken()"><!-- --></A><H3>
tds5ResultToken</H3>
<PRE>
private void <B>tds5ResultToken</B>()
throws java.io.IOException,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></PRE>
<DL>
<DD>Process a TDS 5.0 result set packet.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE><A HREF="../../../../net/sourceforge/jtds/jdbc/ProtocolException.html" title="class in net.sourceforge.jtds.jdbc">ProtocolException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="tdsDoneToken()"><!-- --></A><H3>
tdsDoneToken</H3>
<PRE>
private void <B>tdsDoneToken</B>()
throws java.io.IOException</PRE>
<DL>
<DD>Process a DONE, DONEINPROC or DONEPROC token.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="executeSQL42(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, boolean)"><!-- --></A><H3>
executeSQL42</H3>
<PRE>
private void <B>executeSQL42</B>(java.lang.String sql,
java.lang.String procName,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] parameters,
boolean noMetaData,
boolean sendNow)
throws java.io.IOException,
java.sql.SQLException</PRE>
<DL>
<DD>Execute SQL using TDS 4.2 protocol.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sql</CODE> - The SQL statement to execute.<DD><CODE>procName</CODE> - Stored procedure to execute or null.<DD><CODE>parameters</CODE> - Parameters for call or null.<DD><CODE>noMetaData</CODE> - Suppress meta data for cursor calls.
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="executeSQL50(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[])"><!-- --></A><H3>
executeSQL50</H3>
<PRE>
private void <B>executeSQL50</B>(java.lang.String sql,
java.lang.String procName,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] parameters)
throws java.io.IOException,
java.sql.SQLException</PRE>
<DL>
<DD>Execute SQL using TDS 5.0 protocol.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sql</CODE> - The SQL statement to execute.<DD><CODE>procName</CODE> - Stored procedure to execute or null.<DD><CODE>parameters</CODE> - Parameters for call or null.
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="isPreparedProcedureName(java.lang.String)"><!-- --></A><H3>
isPreparedProcedureName</H3>
<PRE>
public static boolean <B>isPreparedProcedureName</B>(java.lang.String procName)</PRE>
<DL>
<DD>Returns <code>true</code> if the specified <code>procName</code>
is a sp_prepare or sp_prepexec handle; returns <code>false</code>
otherwise.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>procName</CODE> - Stored procedure to execute or <code>null</code>.
<DT><B>Returns:</B><DD><code>true</code> if the specified <code>procName</code>
is a sp_prepare or sp_prepexec handle; <code>false</code>
otherwise.</DL>
</DD>
</DL>
<HR>
<A NAME="executeSQL70(java.lang.String, java.lang.String, net.sourceforge.jtds.jdbc.ParamInfo[], boolean, boolean)"><!-- --></A><H3>
executeSQL70</H3>
<PRE>
private void <B>executeSQL70</B>(java.lang.String sql,
java.lang.String procName,
<A HREF="../../../../net/sourceforge/jtds/jdbc/ParamInfo.html" title="class in net.sourceforge.jtds.jdbc">ParamInfo</A>[] parameters,
boolean noMetaData,
boolean sendNow)
throws java.io.IOException,
java.sql.SQLException</PRE>
<DL>
<DD>Execute SQL using TDS 7.0 protocol.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>sql</CODE> - The SQL statement to execute.<DD><CODE>procName</CODE> - Stored procedure to execute or <code>null</code>.<DD><CODE>parameters</CODE> - Parameters for call or <code>null</code>.<DD><CODE>noMetaData</CODE> - Suppress meta data for cursor calls.
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="setRowCountAndTextSize(int, int)"><!-- --></A><H3>
setRowCountAndTextSize</H3>
<PRE>
private void <B>setRowCountAndTextSize</B>(int rowCount,
int textSize)
throws java.sql.SQLException</PRE>
<DL>
<DD>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).
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rowCount</CODE> - the number of rows to return or 0 for no limit or -1 to
leave as is<DD><CODE>textSize</CODE> - the maximum number of bytes in a TEXT column to return
or -1 to leave as is
<DT><B>Throws:</B>
<DD><CODE>java.sql.SQLException</CODE> - if an error is returned by the server</DL>
</DD>
</DL>
<HR>
<A NAME="wait(int)"><!-- --></A><H3>
wait</H3>
<PRE>
private void <B>wait</B>(int timeOut)
throws java.io.IOException,
java.sql.SQLException</PRE>
<DL>
<DD>Waits for the first byte of the server response.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>timeOut</CODE> - the timeout period in seconds or 0
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE>java.sql.SQLException</CODE></DL>
</DD>
</DL>
<HR>
<A NAME="cleanUp()"><!-- --></A><H3>
cleanUp</H3>
<PRE>
public void <B>cleanUp</B>()</PRE>
<DL>
<DD>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.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getMessages()"><!-- --></A><H3>
getMessages</H3>
<PRE>
public <A HREF="../../../../net/sourceforge/jtds/jdbc/SQLDiagnostic.html" title="class in net.sourceforge.jtds.jdbc">SQLDiagnostic</A> <B>getMessages</B>()</PRE>
<DL>
<DD>Returns the diagnostic chain for this instance.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getMACAddress(java.lang.String)"><!-- --></A><H3>
getMACAddress</H3>
<PRE>
private static byte[] <B>getMACAddress</B>(java.lang.String macString)</PRE>
<DL>
<DD>Converts a user supplied MAC address into a byte array.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>macString</CODE> - the MAC address as a hex string
<DT><B>Returns:</B><DD>the MAC address as a <code>byte[]</code></DL>
</DD>
</DL>
<HR>
<A NAME="getHostName()"><!-- --></A><H3>
getHostName</H3>
<PRE>
private static java.lang.String <B>getHostName</B>()</PRE>
<DL>
<DD>Tries to figure out what client name we should identify ourselves as.
Gets the hostname of this machine,
<P>
<DD><DL>
<DT><B>Returns:</B><DD>name to use as the client</DL>
</DD>
</DL>
<HR>
<A NAME="tds7CryptPass(java.lang.String)"><!-- --></A><H3>
tds7CryptPass</H3>
<PRE>
private static java.lang.String <B>tds7CryptPass</B>(java.lang.String pw)</PRE>
<DL>
<DD>A <B>very</B> poor man's "encryption".
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>pw</CODE> - password to encrypt
<DT><B>Returns:</B><DD>encrypted password</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TdsCore.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../net/sourceforge/jtds/jdbc/Support.html" title="class in net.sourceforge.jtds.jdbc"><B>PREV CLASS</B></A>
<A HREF="../../../../net/sourceforge/jtds/jdbc/TdsCore.TableMetaData.html" title="class in net.sourceforge.jtds.jdbc"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="TdsCore.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Generated on December 30 2009
</BODY>
</HTML>
|