MultiHostMySQLConnection.java
83.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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
/*
Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
The MySQL Connector/J is licensed under the terms of the GPLv2
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most MySQL Connectors.
There are special exceptions to the terms and conditions of the GPLv2 as it is applied to
this software, see the FOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
This program is free software; you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation; version 2
of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this
program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth
Floor, Boston, MA 02110-1301 USA
*/
package com.mysql.jdbc;
import java.sql.CallableStatement;
import java.sql.DatabaseMetaData;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Savepoint;
import java.sql.Statement;
import java.util.Calendar;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.TimeZone;
import java.util.Timer;
import java.util.concurrent.Executor;
import com.mysql.jdbc.log.Log;
import com.mysql.jdbc.profiler.ProfilerEventHandler;
/**
* Each instance of MultiHostMySQLConnection is coupled with a MultiHostConnectionProxy instance.
*
* While this class implements MySQLConnection directly, MultiHostConnectionProxy does the same but via a dynamic proxy.
*
* Most of the methods in this class refer directly to the active connection from its MultiHostConnectionProxy pair, providing a non-proxied access to the
* current active connection managed by this multi-host structure. The remaining methods either implement some local behavior or refer to the proxy itself
* instead of the sub-connection.
*
* Referring to the higher level proxy connection is needed when some operation needs to be extended to all open sub-connections existing in this multi-host
* structure as opposed to just refer to the active current connection, such as with close() which is most likely required to close all sub-connections as
* well.
*/
public class MultiHostMySQLConnection implements MySQLConnection {
/**
* thisAsProxy holds the proxy (MultiHostConnectionProxy or one of its subclasses) this connection is associated with.
* It is used as a gateway to the current active sub-connection managed by this multi-host structure or as a target to where some of the methods implemented
* here in this class refer to.
*/
protected MultiHostConnectionProxy thisAsProxy;
public MultiHostMySQLConnection(MultiHostConnectionProxy proxy) {
this.thisAsProxy = proxy;
}
protected MultiHostConnectionProxy getThisAsProxy() {
return this.thisAsProxy;
}
protected MySQLConnection getActiveMySQLConnection() {
synchronized (this.thisAsProxy) {
return this.thisAsProxy.currentConnection;
}
}
public void abortInternal() throws SQLException {
getActiveMySQLConnection().abortInternal();
}
public void changeUser(String userName, String newPassword) throws SQLException {
getActiveMySQLConnection().changeUser(userName, newPassword);
}
public void checkClosed() throws SQLException {
getActiveMySQLConnection().checkClosed();
}
@Deprecated
public void clearHasTriedMaster() {
getActiveMySQLConnection().clearHasTriedMaster();
}
public void clearWarnings() throws SQLException {
getActiveMySQLConnection().clearWarnings();
}
public PreparedStatement clientPrepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
return getActiveMySQLConnection().clientPrepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
}
public PreparedStatement clientPrepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
return getActiveMySQLConnection().clientPrepareStatement(sql, resultSetType, resultSetConcurrency);
}
public PreparedStatement clientPrepareStatement(String sql, int autoGenKeyIndex) throws SQLException {
return getActiveMySQLConnection().clientPrepareStatement(sql, autoGenKeyIndex);
}
public PreparedStatement clientPrepareStatement(String sql, int[] autoGenKeyIndexes) throws SQLException {
return getActiveMySQLConnection().clientPrepareStatement(sql, autoGenKeyIndexes);
}
public PreparedStatement clientPrepareStatement(String sql, String[] autoGenKeyColNames) throws SQLException {
return getActiveMySQLConnection().clientPrepareStatement(sql, autoGenKeyColNames);
}
public PreparedStatement clientPrepareStatement(String sql) throws SQLException {
return getActiveMySQLConnection().clientPrepareStatement(sql);
}
public void close() throws SQLException {
getActiveMySQLConnection().close();
}
public void commit() throws SQLException {
getActiveMySQLConnection().commit();
}
public void createNewIO(boolean isForReconnect) throws SQLException {
getActiveMySQLConnection().createNewIO(isForReconnect);
}
public Statement createStatement() throws SQLException {
return getActiveMySQLConnection().createStatement();
}
public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
return getActiveMySQLConnection().createStatement(resultSetType, resultSetConcurrency, resultSetHoldability);
}
public Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException {
return getActiveMySQLConnection().createStatement(resultSetType, resultSetConcurrency);
}
public void dumpTestcaseQuery(String query) {
getActiveMySQLConnection().dumpTestcaseQuery(query);
}
public Connection duplicate() throws SQLException {
return getActiveMySQLConnection().duplicate();
}
public ResultSetInternalMethods execSQL(StatementImpl callingStatement, String sql, int maxRows, Buffer packet, int resultSetType, int resultSetConcurrency,
boolean streamResults, String catalog, Field[] cachedMetadata, boolean isBatch) throws SQLException {
return getActiveMySQLConnection().execSQL(callingStatement, sql, maxRows, packet, resultSetType, resultSetConcurrency, streamResults, catalog,
cachedMetadata, isBatch);
}
public ResultSetInternalMethods execSQL(StatementImpl callingStatement, String sql, int maxRows, Buffer packet, int resultSetType, int resultSetConcurrency,
boolean streamResults, String catalog, Field[] cachedMetadata) throws SQLException {
return getActiveMySQLConnection().execSQL(callingStatement, sql, maxRows, packet, resultSetType, resultSetConcurrency, streamResults, catalog,
cachedMetadata);
}
public String extractSqlFromPacket(String possibleSqlQuery, Buffer queryPacket, int endOfQueryPacketPosition) throws SQLException {
return getActiveMySQLConnection().extractSqlFromPacket(possibleSqlQuery, queryPacket, endOfQueryPacketPosition);
}
public String exposeAsXml() throws SQLException {
return getActiveMySQLConnection().exposeAsXml();
}
public boolean getAllowLoadLocalInfile() {
return getActiveMySQLConnection().getAllowLoadLocalInfile();
}
public boolean getAllowMultiQueries() {
return getActiveMySQLConnection().getAllowMultiQueries();
}
public boolean getAllowNanAndInf() {
return getActiveMySQLConnection().getAllowNanAndInf();
}
public boolean getAllowUrlInLocalInfile() {
return getActiveMySQLConnection().getAllowUrlInLocalInfile();
}
public boolean getAlwaysSendSetIsolation() {
return getActiveMySQLConnection().getAlwaysSendSetIsolation();
}
public boolean getAutoClosePStmtStreams() {
return getActiveMySQLConnection().getAutoClosePStmtStreams();
}
public boolean getAutoDeserialize() {
return getActiveMySQLConnection().getAutoDeserialize();
}
public boolean getAutoGenerateTestcaseScript() {
return getActiveMySQLConnection().getAutoGenerateTestcaseScript();
}
public boolean getAutoReconnectForPools() {
return getActiveMySQLConnection().getAutoReconnectForPools();
}
public boolean getAutoSlowLog() {
return getActiveMySQLConnection().getAutoSlowLog();
}
public int getBlobSendChunkSize() {
return getActiveMySQLConnection().getBlobSendChunkSize();
}
public boolean getBlobsAreStrings() {
return getActiveMySQLConnection().getBlobsAreStrings();
}
public boolean getCacheCallableStatements() {
return getActiveMySQLConnection().getCacheCallableStatements();
}
public boolean getCacheCallableStmts() {
return getActiveMySQLConnection().getCacheCallableStmts();
}
public boolean getCachePrepStmts() {
return getActiveMySQLConnection().getCachePrepStmts();
}
public boolean getCachePreparedStatements() {
return getActiveMySQLConnection().getCachePreparedStatements();
}
public boolean getCacheResultSetMetadata() {
return getActiveMySQLConnection().getCacheResultSetMetadata();
}
public boolean getCacheServerConfiguration() {
return getActiveMySQLConnection().getCacheServerConfiguration();
}
public int getCallableStatementCacheSize() {
return getActiveMySQLConnection().getCallableStatementCacheSize();
}
public int getCallableStmtCacheSize() {
return getActiveMySQLConnection().getCallableStmtCacheSize();
}
public boolean getCapitalizeTypeNames() {
return getActiveMySQLConnection().getCapitalizeTypeNames();
}
public String getCharacterSetResults() {
return getActiveMySQLConnection().getCharacterSetResults();
}
public String getClientCertificateKeyStorePassword() {
return getActiveMySQLConnection().getClientCertificateKeyStorePassword();
}
public String getClientCertificateKeyStoreType() {
return getActiveMySQLConnection().getClientCertificateKeyStoreType();
}
public String getClientCertificateKeyStoreUrl() {
return getActiveMySQLConnection().getClientCertificateKeyStoreUrl();
}
public String getClientInfoProvider() {
return getActiveMySQLConnection().getClientInfoProvider();
}
public String getClobCharacterEncoding() {
return getActiveMySQLConnection().getClobCharacterEncoding();
}
public boolean getClobberStreamingResults() {
return getActiveMySQLConnection().getClobberStreamingResults();
}
public boolean getCompensateOnDuplicateKeyUpdateCounts() {
return getActiveMySQLConnection().getCompensateOnDuplicateKeyUpdateCounts();
}
public int getConnectTimeout() {
return getActiveMySQLConnection().getConnectTimeout();
}
public String getConnectionCollation() {
return getActiveMySQLConnection().getConnectionCollation();
}
public String getConnectionLifecycleInterceptors() {
return getActiveMySQLConnection().getConnectionLifecycleInterceptors();
}
public boolean getContinueBatchOnError() {
return getActiveMySQLConnection().getContinueBatchOnError();
}
public boolean getCreateDatabaseIfNotExist() {
return getActiveMySQLConnection().getCreateDatabaseIfNotExist();
}
public int getDefaultFetchSize() {
return getActiveMySQLConnection().getDefaultFetchSize();
}
public boolean getDontTrackOpenResources() {
return getActiveMySQLConnection().getDontTrackOpenResources();
}
public boolean getDumpMetadataOnColumnNotFound() {
return getActiveMySQLConnection().getDumpMetadataOnColumnNotFound();
}
public boolean getDumpQueriesOnException() {
return getActiveMySQLConnection().getDumpQueriesOnException();
}
public boolean getDynamicCalendars() {
return getActiveMySQLConnection().getDynamicCalendars();
}
public boolean getElideSetAutoCommits() {
return getActiveMySQLConnection().getElideSetAutoCommits();
}
public boolean getEmptyStringsConvertToZero() {
return getActiveMySQLConnection().getEmptyStringsConvertToZero();
}
public boolean getEmulateLocators() {
return getActiveMySQLConnection().getEmulateLocators();
}
public boolean getEmulateUnsupportedPstmts() {
return getActiveMySQLConnection().getEmulateUnsupportedPstmts();
}
public boolean getEnablePacketDebug() {
return getActiveMySQLConnection().getEnablePacketDebug();
}
public boolean getEnableQueryTimeouts() {
return getActiveMySQLConnection().getEnableQueryTimeouts();
}
public String getEncoding() {
return getActiveMySQLConnection().getEncoding();
}
public String getExceptionInterceptors() {
return getActiveMySQLConnection().getExceptionInterceptors();
}
public boolean getExplainSlowQueries() {
return getActiveMySQLConnection().getExplainSlowQueries();
}
public boolean getFailOverReadOnly() {
return getActiveMySQLConnection().getFailOverReadOnly();
}
public boolean getFunctionsNeverReturnBlobs() {
return getActiveMySQLConnection().getFunctionsNeverReturnBlobs();
}
public boolean getGatherPerfMetrics() {
return getActiveMySQLConnection().getGatherPerfMetrics();
}
public boolean getGatherPerformanceMetrics() {
return getActiveMySQLConnection().getGatherPerformanceMetrics();
}
public boolean getGenerateSimpleParameterMetadata() {
return getActiveMySQLConnection().getGenerateSimpleParameterMetadata();
}
public boolean getIgnoreNonTxTables() {
return getActiveMySQLConnection().getIgnoreNonTxTables();
}
public boolean getIncludeInnodbStatusInDeadlockExceptions() {
return getActiveMySQLConnection().getIncludeInnodbStatusInDeadlockExceptions();
}
public int getInitialTimeout() {
return getActiveMySQLConnection().getInitialTimeout();
}
public boolean getInteractiveClient() {
return getActiveMySQLConnection().getInteractiveClient();
}
public boolean getIsInteractiveClient() {
return getActiveMySQLConnection().getIsInteractiveClient();
}
public boolean getJdbcCompliantTruncation() {
return getActiveMySQLConnection().getJdbcCompliantTruncation();
}
public boolean getJdbcCompliantTruncationForReads() {
return getActiveMySQLConnection().getJdbcCompliantTruncationForReads();
}
public String getLargeRowSizeThreshold() {
return getActiveMySQLConnection().getLargeRowSizeThreshold();
}
public int getLoadBalanceBlacklistTimeout() {
return getActiveMySQLConnection().getLoadBalanceBlacklistTimeout();
}
public int getLoadBalancePingTimeout() {
return getActiveMySQLConnection().getLoadBalancePingTimeout();
}
public String getLoadBalanceStrategy() {
return getActiveMySQLConnection().getLoadBalanceStrategy();
}
public boolean getLoadBalanceValidateConnectionOnSwapServer() {
return getActiveMySQLConnection().getLoadBalanceValidateConnectionOnSwapServer();
}
public String getLocalSocketAddress() {
return getActiveMySQLConnection().getLocalSocketAddress();
}
public int getLocatorFetchBufferSize() {
return getActiveMySQLConnection().getLocatorFetchBufferSize();
}
public boolean getLogSlowQueries() {
return getActiveMySQLConnection().getLogSlowQueries();
}
public boolean getLogXaCommands() {
return getActiveMySQLConnection().getLogXaCommands();
}
public String getLogger() {
return getActiveMySQLConnection().getLogger();
}
public String getLoggerClassName() {
return getActiveMySQLConnection().getLoggerClassName();
}
public boolean getMaintainTimeStats() {
return getActiveMySQLConnection().getMaintainTimeStats();
}
public int getMaxAllowedPacket() {
return getActiveMySQLConnection().getMaxAllowedPacket();
}
public int getMaxQuerySizeToLog() {
return getActiveMySQLConnection().getMaxQuerySizeToLog();
}
public int getMaxReconnects() {
return getActiveMySQLConnection().getMaxReconnects();
}
public int getMaxRows() {
return getActiveMySQLConnection().getMaxRows();
}
public int getMetadataCacheSize() {
return getActiveMySQLConnection().getMetadataCacheSize();
}
public int getNetTimeoutForStreamingResults() {
return getActiveMySQLConnection().getNetTimeoutForStreamingResults();
}
public boolean getNoAccessToProcedureBodies() {
return getActiveMySQLConnection().getNoAccessToProcedureBodies();
}
public boolean getNoDatetimeStringSync() {
return getActiveMySQLConnection().getNoDatetimeStringSync();
}
public boolean getNoTimezoneConversionForTimeType() {
return getActiveMySQLConnection().getNoTimezoneConversionForTimeType();
}
public boolean getNoTimezoneConversionForDateType() {
return getActiveMySQLConnection().getNoTimezoneConversionForDateType();
}
public boolean getCacheDefaultTimezone() {
return getActiveMySQLConnection().getCacheDefaultTimezone();
}
public boolean getNullCatalogMeansCurrent() {
return getActiveMySQLConnection().getNullCatalogMeansCurrent();
}
public boolean getNullNamePatternMatchesAll() {
return getActiveMySQLConnection().getNullNamePatternMatchesAll();
}
public boolean getOverrideSupportsIntegrityEnhancementFacility() {
return getActiveMySQLConnection().getOverrideSupportsIntegrityEnhancementFacility();
}
public int getPacketDebugBufferSize() {
return getActiveMySQLConnection().getPacketDebugBufferSize();
}
public boolean getPadCharsWithSpace() {
return getActiveMySQLConnection().getPadCharsWithSpace();
}
public boolean getParanoid() {
return getActiveMySQLConnection().getParanoid();
}
public String getPasswordCharacterEncoding() {
return getActiveMySQLConnection().getPasswordCharacterEncoding();
}
public boolean getPedantic() {
return getActiveMySQLConnection().getPedantic();
}
public boolean getPinGlobalTxToPhysicalConnection() {
return getActiveMySQLConnection().getPinGlobalTxToPhysicalConnection();
}
public boolean getPopulateInsertRowWithDefaultValues() {
return getActiveMySQLConnection().getPopulateInsertRowWithDefaultValues();
}
public int getPrepStmtCacheSize() {
return getActiveMySQLConnection().getPrepStmtCacheSize();
}
public int getPrepStmtCacheSqlLimit() {
return getActiveMySQLConnection().getPrepStmtCacheSqlLimit();
}
public int getPreparedStatementCacheSize() {
return getActiveMySQLConnection().getPreparedStatementCacheSize();
}
public int getPreparedStatementCacheSqlLimit() {
return getActiveMySQLConnection().getPreparedStatementCacheSqlLimit();
}
public boolean getProcessEscapeCodesForPrepStmts() {
return getActiveMySQLConnection().getProcessEscapeCodesForPrepStmts();
}
public boolean getProfileSQL() {
return getActiveMySQLConnection().getProfileSQL();
}
public boolean getProfileSql() {
return getActiveMySQLConnection().getProfileSql();
}
public String getProfilerEventHandler() {
return getActiveMySQLConnection().getProfilerEventHandler();
}
public String getPropertiesTransform() {
return getActiveMySQLConnection().getPropertiesTransform();
}
public int getQueriesBeforeRetryMaster() {
return getActiveMySQLConnection().getQueriesBeforeRetryMaster();
}
public boolean getQueryTimeoutKillsConnection() {
return getActiveMySQLConnection().getQueryTimeoutKillsConnection();
}
public boolean getReconnectAtTxEnd() {
return getActiveMySQLConnection().getReconnectAtTxEnd();
}
public boolean getRelaxAutoCommit() {
return getActiveMySQLConnection().getRelaxAutoCommit();
}
public int getReportMetricsIntervalMillis() {
return getActiveMySQLConnection().getReportMetricsIntervalMillis();
}
public boolean getRequireSSL() {
return getActiveMySQLConnection().getRequireSSL();
}
public String getResourceId() {
return getActiveMySQLConnection().getResourceId();
}
public int getResultSetSizeThreshold() {
return getActiveMySQLConnection().getResultSetSizeThreshold();
}
public boolean getRetainStatementAfterResultSetClose() {
return getActiveMySQLConnection().getRetainStatementAfterResultSetClose();
}
public int getRetriesAllDown() {
return getActiveMySQLConnection().getRetriesAllDown();
}
public boolean getRewriteBatchedStatements() {
return getActiveMySQLConnection().getRewriteBatchedStatements();
}
public boolean getRollbackOnPooledClose() {
return getActiveMySQLConnection().getRollbackOnPooledClose();
}
public boolean getRoundRobinLoadBalance() {
return getActiveMySQLConnection().getRoundRobinLoadBalance();
}
public boolean getRunningCTS13() {
return getActiveMySQLConnection().getRunningCTS13();
}
public int getSecondsBeforeRetryMaster() {
return getActiveMySQLConnection().getSecondsBeforeRetryMaster();
}
public int getSelfDestructOnPingMaxOperations() {
return getActiveMySQLConnection().getSelfDestructOnPingMaxOperations();
}
public int getSelfDestructOnPingSecondsLifetime() {
return getActiveMySQLConnection().getSelfDestructOnPingSecondsLifetime();
}
public String getServerTimezone() {
return getActiveMySQLConnection().getServerTimezone();
}
public String getSessionVariables() {
return getActiveMySQLConnection().getSessionVariables();
}
public int getSlowQueryThresholdMillis() {
return getActiveMySQLConnection().getSlowQueryThresholdMillis();
}
public long getSlowQueryThresholdNanos() {
return getActiveMySQLConnection().getSlowQueryThresholdNanos();
}
public String getSocketFactory() {
return getActiveMySQLConnection().getSocketFactory();
}
public String getSocketFactoryClassName() {
return getActiveMySQLConnection().getSocketFactoryClassName();
}
public int getSocketTimeout() {
return getActiveMySQLConnection().getSocketTimeout();
}
public String getStatementInterceptors() {
return getActiveMySQLConnection().getStatementInterceptors();
}
public boolean getStrictFloatingPoint() {
return getActiveMySQLConnection().getStrictFloatingPoint();
}
public boolean getStrictUpdates() {
return getActiveMySQLConnection().getStrictUpdates();
}
public boolean getTcpKeepAlive() {
return getActiveMySQLConnection().getTcpKeepAlive();
}
public boolean getTcpNoDelay() {
return getActiveMySQLConnection().getTcpNoDelay();
}
public int getTcpRcvBuf() {
return getActiveMySQLConnection().getTcpRcvBuf();
}
public int getTcpSndBuf() {
return getActiveMySQLConnection().getTcpSndBuf();
}
public int getTcpTrafficClass() {
return getActiveMySQLConnection().getTcpTrafficClass();
}
public boolean getTinyInt1isBit() {
return getActiveMySQLConnection().getTinyInt1isBit();
}
public boolean getTraceProtocol() {
return getActiveMySQLConnection().getTraceProtocol();
}
public boolean getTransformedBitIsBoolean() {
return getActiveMySQLConnection().getTransformedBitIsBoolean();
}
public boolean getTreatUtilDateAsTimestamp() {
return getActiveMySQLConnection().getTreatUtilDateAsTimestamp();
}
public String getTrustCertificateKeyStorePassword() {
return getActiveMySQLConnection().getTrustCertificateKeyStorePassword();
}
public String getTrustCertificateKeyStoreType() {
return getActiveMySQLConnection().getTrustCertificateKeyStoreType();
}
public String getTrustCertificateKeyStoreUrl() {
return getActiveMySQLConnection().getTrustCertificateKeyStoreUrl();
}
public boolean getUltraDevHack() {
return getActiveMySQLConnection().getUltraDevHack();
}
public boolean getUseAffectedRows() {
return getActiveMySQLConnection().getUseAffectedRows();
}
public boolean getUseBlobToStoreUTF8OutsideBMP() {
return getActiveMySQLConnection().getUseBlobToStoreUTF8OutsideBMP();
}
public boolean getUseColumnNamesInFindColumn() {
return getActiveMySQLConnection().getUseColumnNamesInFindColumn();
}
public boolean getUseCompression() {
return getActiveMySQLConnection().getUseCompression();
}
public String getUseConfigs() {
return getActiveMySQLConnection().getUseConfigs();
}
public boolean getUseCursorFetch() {
return getActiveMySQLConnection().getUseCursorFetch();
}
public boolean getUseDirectRowUnpack() {
return getActiveMySQLConnection().getUseDirectRowUnpack();
}
public boolean getUseDynamicCharsetInfo() {
return getActiveMySQLConnection().getUseDynamicCharsetInfo();
}
public boolean getUseFastDateParsing() {
return getActiveMySQLConnection().getUseFastDateParsing();
}
public boolean getUseFastIntParsing() {
return getActiveMySQLConnection().getUseFastIntParsing();
}
public boolean getUseGmtMillisForDatetimes() {
return getActiveMySQLConnection().getUseGmtMillisForDatetimes();
}
public boolean getUseHostsInPrivileges() {
return getActiveMySQLConnection().getUseHostsInPrivileges();
}
public boolean getUseInformationSchema() {
return getActiveMySQLConnection().getUseInformationSchema();
}
public boolean getUseJDBCCompliantTimezoneShift() {
return getActiveMySQLConnection().getUseJDBCCompliantTimezoneShift();
}
public boolean getUseJvmCharsetConverters() {
return getActiveMySQLConnection().getUseJvmCharsetConverters();
}
public boolean getUseLegacyDatetimeCode() {
return getActiveMySQLConnection().getUseLegacyDatetimeCode();
}
public boolean getSendFractionalSeconds() {
return getActiveMySQLConnection().getSendFractionalSeconds();
}
public boolean getUseLocalSessionState() {
return getActiveMySQLConnection().getUseLocalSessionState();
}
public boolean getUseLocalTransactionState() {
return getActiveMySQLConnection().getUseLocalTransactionState();
}
public boolean getUseNanosForElapsedTime() {
return getActiveMySQLConnection().getUseNanosForElapsedTime();
}
public boolean getUseOldAliasMetadataBehavior() {
return getActiveMySQLConnection().getUseOldAliasMetadataBehavior();
}
public boolean getUseOldUTF8Behavior() {
return getActiveMySQLConnection().getUseOldUTF8Behavior();
}
public boolean getUseOnlyServerErrorMessages() {
return getActiveMySQLConnection().getUseOnlyServerErrorMessages();
}
public boolean getUseReadAheadInput() {
return getActiveMySQLConnection().getUseReadAheadInput();
}
public boolean getUseSSL() {
return getActiveMySQLConnection().getUseSSL();
}
public boolean getUseSSPSCompatibleTimezoneShift() {
return getActiveMySQLConnection().getUseSSPSCompatibleTimezoneShift();
}
public boolean getUseServerPrepStmts() {
return getActiveMySQLConnection().getUseServerPrepStmts();
}
public boolean getUseServerPreparedStmts() {
return getActiveMySQLConnection().getUseServerPreparedStmts();
}
public boolean getUseSqlStateCodes() {
return getActiveMySQLConnection().getUseSqlStateCodes();
}
public boolean getUseStreamLengthsInPrepStmts() {
return getActiveMySQLConnection().getUseStreamLengthsInPrepStmts();
}
public boolean getUseTimezone() {
return getActiveMySQLConnection().getUseTimezone();
}
public boolean getUseUltraDevWorkAround() {
return getActiveMySQLConnection().getUseUltraDevWorkAround();
}
public boolean getUseUnbufferedInput() {
return getActiveMySQLConnection().getUseUnbufferedInput();
}
public boolean getUseUnicode() {
return getActiveMySQLConnection().getUseUnicode();
}
public boolean getUseUsageAdvisor() {
return getActiveMySQLConnection().getUseUsageAdvisor();
}
public String getUtf8OutsideBmpExcludedColumnNamePattern() {
return getActiveMySQLConnection().getUtf8OutsideBmpExcludedColumnNamePattern();
}
public String getUtf8OutsideBmpIncludedColumnNamePattern() {
return getActiveMySQLConnection().getUtf8OutsideBmpIncludedColumnNamePattern();
}
public boolean getVerifyServerCertificate() {
return getActiveMySQLConnection().getVerifyServerCertificate();
}
public boolean getYearIsDateType() {
return getActiveMySQLConnection().getYearIsDateType();
}
public String getZeroDateTimeBehavior() {
return getActiveMySQLConnection().getZeroDateTimeBehavior();
}
public void setAllowLoadLocalInfile(boolean property) {
getActiveMySQLConnection().setAllowLoadLocalInfile(property);
}
public void setAllowMultiQueries(boolean property) {
getActiveMySQLConnection().setAllowMultiQueries(property);
}
public void setAllowNanAndInf(boolean flag) {
getActiveMySQLConnection().setAllowNanAndInf(flag);
}
public void setAllowUrlInLocalInfile(boolean flag) {
getActiveMySQLConnection().setAllowUrlInLocalInfile(flag);
}
public void setAlwaysSendSetIsolation(boolean flag) {
getActiveMySQLConnection().setAlwaysSendSetIsolation(flag);
}
public void setAutoClosePStmtStreams(boolean flag) {
getActiveMySQLConnection().setAutoClosePStmtStreams(flag);
}
public void setAutoDeserialize(boolean flag) {
getActiveMySQLConnection().setAutoDeserialize(flag);
}
public void setAutoGenerateTestcaseScript(boolean flag) {
getActiveMySQLConnection().setAutoGenerateTestcaseScript(flag);
}
public void setAutoReconnect(boolean flag) {
getActiveMySQLConnection().setAutoReconnect(flag);
}
public void setAutoReconnectForConnectionPools(boolean property) {
getActiveMySQLConnection().setAutoReconnectForConnectionPools(property);
}
public void setAutoReconnectForPools(boolean flag) {
getActiveMySQLConnection().setAutoReconnectForPools(flag);
}
public void setAutoSlowLog(boolean flag) {
getActiveMySQLConnection().setAutoSlowLog(flag);
}
public void setBlobSendChunkSize(String value) throws SQLException {
getActiveMySQLConnection().setBlobSendChunkSize(value);
}
public void setBlobsAreStrings(boolean flag) {
getActiveMySQLConnection().setBlobsAreStrings(flag);
}
public void setCacheCallableStatements(boolean flag) {
getActiveMySQLConnection().setCacheCallableStatements(flag);
}
public void setCacheCallableStmts(boolean flag) {
getActiveMySQLConnection().setCacheCallableStmts(flag);
}
public void setCachePrepStmts(boolean flag) {
getActiveMySQLConnection().setCachePrepStmts(flag);
}
public void setCachePreparedStatements(boolean flag) {
getActiveMySQLConnection().setCachePreparedStatements(flag);
}
public void setCacheResultSetMetadata(boolean property) {
getActiveMySQLConnection().setCacheResultSetMetadata(property);
}
public void setCacheServerConfiguration(boolean flag) {
getActiveMySQLConnection().setCacheServerConfiguration(flag);
}
public void setCallableStatementCacheSize(int size) throws SQLException {
getActiveMySQLConnection().setCallableStatementCacheSize(size);
}
public void setCallableStmtCacheSize(int cacheSize) throws SQLException {
getActiveMySQLConnection().setCallableStmtCacheSize(cacheSize);
}
public void setCapitalizeDBMDTypes(boolean property) {
getActiveMySQLConnection().setCapitalizeDBMDTypes(property);
}
public void setCapitalizeTypeNames(boolean flag) {
getActiveMySQLConnection().setCapitalizeTypeNames(flag);
}
public void setCharacterEncoding(String encoding) {
getActiveMySQLConnection().setCharacterEncoding(encoding);
}
public void setCharacterSetResults(String characterSet) {
getActiveMySQLConnection().setCharacterSetResults(characterSet);
}
public void setClientCertificateKeyStorePassword(String value) {
getActiveMySQLConnection().setClientCertificateKeyStorePassword(value);
}
public void setClientCertificateKeyStoreType(String value) {
getActiveMySQLConnection().setClientCertificateKeyStoreType(value);
}
public void setClientCertificateKeyStoreUrl(String value) {
getActiveMySQLConnection().setClientCertificateKeyStoreUrl(value);
}
public void setClientInfoProvider(String classname) {
getActiveMySQLConnection().setClientInfoProvider(classname);
}
public void setClobCharacterEncoding(String encoding) {
getActiveMySQLConnection().setClobCharacterEncoding(encoding);
}
public void setClobberStreamingResults(boolean flag) {
getActiveMySQLConnection().setClobberStreamingResults(flag);
}
public void setCompensateOnDuplicateKeyUpdateCounts(boolean flag) {
getActiveMySQLConnection().setCompensateOnDuplicateKeyUpdateCounts(flag);
}
public void setConnectTimeout(int timeoutMs) throws SQLException {
getActiveMySQLConnection().setConnectTimeout(timeoutMs);
}
public void setConnectionCollation(String collation) {
getActiveMySQLConnection().setConnectionCollation(collation);
}
public void setConnectionLifecycleInterceptors(String interceptors) {
getActiveMySQLConnection().setConnectionLifecycleInterceptors(interceptors);
}
public void setContinueBatchOnError(boolean property) {
getActiveMySQLConnection().setContinueBatchOnError(property);
}
public void setCreateDatabaseIfNotExist(boolean flag) {
getActiveMySQLConnection().setCreateDatabaseIfNotExist(flag);
}
public void setDefaultFetchSize(int n) throws SQLException {
getActiveMySQLConnection().setDefaultFetchSize(n);
}
public void setDetectServerPreparedStmts(boolean property) {
getActiveMySQLConnection().setDetectServerPreparedStmts(property);
}
public void setDontTrackOpenResources(boolean flag) {
getActiveMySQLConnection().setDontTrackOpenResources(flag);
}
public void setDumpMetadataOnColumnNotFound(boolean flag) {
getActiveMySQLConnection().setDumpMetadataOnColumnNotFound(flag);
}
public void setDumpQueriesOnException(boolean flag) {
getActiveMySQLConnection().setDumpQueriesOnException(flag);
}
public void setDynamicCalendars(boolean flag) {
getActiveMySQLConnection().setDynamicCalendars(flag);
}
public void setElideSetAutoCommits(boolean flag) {
getActiveMySQLConnection().setElideSetAutoCommits(flag);
}
public void setEmptyStringsConvertToZero(boolean flag) {
getActiveMySQLConnection().setEmptyStringsConvertToZero(flag);
}
public void setEmulateLocators(boolean property) {
getActiveMySQLConnection().setEmulateLocators(property);
}
public void setEmulateUnsupportedPstmts(boolean flag) {
getActiveMySQLConnection().setEmulateUnsupportedPstmts(flag);
}
public void setEnablePacketDebug(boolean flag) {
getActiveMySQLConnection().setEnablePacketDebug(flag);
}
public void setEnableQueryTimeouts(boolean flag) {
getActiveMySQLConnection().setEnableQueryTimeouts(flag);
}
public void setEncoding(String property) {
getActiveMySQLConnection().setEncoding(property);
}
public void setExceptionInterceptors(String exceptionInterceptors) {
getActiveMySQLConnection().setExceptionInterceptors(exceptionInterceptors);
}
public void setExplainSlowQueries(boolean flag) {
getActiveMySQLConnection().setExplainSlowQueries(flag);
}
public void setFailOverReadOnly(boolean flag) {
getActiveMySQLConnection().setFailOverReadOnly(flag);
}
public void setFunctionsNeverReturnBlobs(boolean flag) {
getActiveMySQLConnection().setFunctionsNeverReturnBlobs(flag);
}
public void setGatherPerfMetrics(boolean flag) {
getActiveMySQLConnection().setGatherPerfMetrics(flag);
}
public void setGatherPerformanceMetrics(boolean flag) {
getActiveMySQLConnection().setGatherPerformanceMetrics(flag);
}
public void setGenerateSimpleParameterMetadata(boolean flag) {
getActiveMySQLConnection().setGenerateSimpleParameterMetadata(flag);
}
public void setHoldResultsOpenOverStatementClose(boolean flag) {
getActiveMySQLConnection().setHoldResultsOpenOverStatementClose(flag);
}
public void setIgnoreNonTxTables(boolean property) {
getActiveMySQLConnection().setIgnoreNonTxTables(property);
}
public void setIncludeInnodbStatusInDeadlockExceptions(boolean flag) {
getActiveMySQLConnection().setIncludeInnodbStatusInDeadlockExceptions(flag);
}
public void setInitialTimeout(int property) throws SQLException {
getActiveMySQLConnection().setInitialTimeout(property);
}
public void setInteractiveClient(boolean property) {
getActiveMySQLConnection().setInteractiveClient(property);
}
public void setIsInteractiveClient(boolean property) {
getActiveMySQLConnection().setIsInteractiveClient(property);
}
public void setJdbcCompliantTruncation(boolean flag) {
getActiveMySQLConnection().setJdbcCompliantTruncation(flag);
}
public void setJdbcCompliantTruncationForReads(boolean jdbcCompliantTruncationForReads) {
getActiveMySQLConnection().setJdbcCompliantTruncationForReads(jdbcCompliantTruncationForReads);
}
public void setLargeRowSizeThreshold(String value) throws SQLException {
getActiveMySQLConnection().setLargeRowSizeThreshold(value);
}
public void setLoadBalanceBlacklistTimeout(int loadBalanceBlacklistTimeout) throws SQLException {
getActiveMySQLConnection().setLoadBalanceBlacklistTimeout(loadBalanceBlacklistTimeout);
}
public void setLoadBalancePingTimeout(int loadBalancePingTimeout) throws SQLException {
getActiveMySQLConnection().setLoadBalancePingTimeout(loadBalancePingTimeout);
}
public void setLoadBalanceStrategy(String strategy) {
getActiveMySQLConnection().setLoadBalanceStrategy(strategy);
}
public void setLoadBalanceValidateConnectionOnSwapServer(boolean loadBalanceValidateConnectionOnSwapServer) {
getActiveMySQLConnection().setLoadBalanceValidateConnectionOnSwapServer(loadBalanceValidateConnectionOnSwapServer);
}
public void setLocalSocketAddress(String address) {
getActiveMySQLConnection().setLocalSocketAddress(address);
}
public void setLocatorFetchBufferSize(String value) throws SQLException {
getActiveMySQLConnection().setLocatorFetchBufferSize(value);
}
public void setLogSlowQueries(boolean flag) {
getActiveMySQLConnection().setLogSlowQueries(flag);
}
public void setLogXaCommands(boolean flag) {
getActiveMySQLConnection().setLogXaCommands(flag);
}
public void setLogger(String property) {
getActiveMySQLConnection().setLogger(property);
}
public void setLoggerClassName(String className) {
getActiveMySQLConnection().setLoggerClassName(className);
}
public void setMaintainTimeStats(boolean flag) {
getActiveMySQLConnection().setMaintainTimeStats(flag);
}
public void setMaxQuerySizeToLog(int sizeInBytes) throws SQLException {
getActiveMySQLConnection().setMaxQuerySizeToLog(sizeInBytes);
}
public void setMaxReconnects(int property) throws SQLException {
getActiveMySQLConnection().setMaxReconnects(property);
}
public void setMaxRows(int property) throws SQLException {
getActiveMySQLConnection().setMaxRows(property);
}
public void setMetadataCacheSize(int value) throws SQLException {
getActiveMySQLConnection().setMetadataCacheSize(value);
}
public void setNetTimeoutForStreamingResults(int value) throws SQLException {
getActiveMySQLConnection().setNetTimeoutForStreamingResults(value);
}
public void setNoAccessToProcedureBodies(boolean flag) {
getActiveMySQLConnection().setNoAccessToProcedureBodies(flag);
}
public void setNoDatetimeStringSync(boolean flag) {
getActiveMySQLConnection().setNoDatetimeStringSync(flag);
}
public void setNoTimezoneConversionForTimeType(boolean flag) {
getActiveMySQLConnection().setNoTimezoneConversionForTimeType(flag);
}
public void setNoTimezoneConversionForDateType(boolean flag) {
getActiveMySQLConnection().setNoTimezoneConversionForDateType(flag);
}
public void setCacheDefaultTimezone(boolean flag) {
getActiveMySQLConnection().setCacheDefaultTimezone(flag);
}
public void setNullCatalogMeansCurrent(boolean value) {
getActiveMySQLConnection().setNullCatalogMeansCurrent(value);
}
public void setNullNamePatternMatchesAll(boolean value) {
getActiveMySQLConnection().setNullNamePatternMatchesAll(value);
}
public void setOverrideSupportsIntegrityEnhancementFacility(boolean flag) {
getActiveMySQLConnection().setOverrideSupportsIntegrityEnhancementFacility(flag);
}
public void setPacketDebugBufferSize(int size) throws SQLException {
getActiveMySQLConnection().setPacketDebugBufferSize(size);
}
public void setPadCharsWithSpace(boolean flag) {
getActiveMySQLConnection().setPadCharsWithSpace(flag);
}
public void setParanoid(boolean property) {
getActiveMySQLConnection().setParanoid(property);
}
public void setPasswordCharacterEncoding(String characterSet) {
getActiveMySQLConnection().setPasswordCharacterEncoding(characterSet);
}
public void setPedantic(boolean property) {
getActiveMySQLConnection().setPedantic(property);
}
public void setPinGlobalTxToPhysicalConnection(boolean flag) {
getActiveMySQLConnection().setPinGlobalTxToPhysicalConnection(flag);
}
public void setPopulateInsertRowWithDefaultValues(boolean flag) {
getActiveMySQLConnection().setPopulateInsertRowWithDefaultValues(flag);
}
public void setPrepStmtCacheSize(int cacheSize) throws SQLException {
getActiveMySQLConnection().setPrepStmtCacheSize(cacheSize);
}
public void setPrepStmtCacheSqlLimit(int sqlLimit) throws SQLException {
getActiveMySQLConnection().setPrepStmtCacheSqlLimit(sqlLimit);
}
public void setPreparedStatementCacheSize(int cacheSize) throws SQLException {
getActiveMySQLConnection().setPreparedStatementCacheSize(cacheSize);
}
public void setPreparedStatementCacheSqlLimit(int cacheSqlLimit) throws SQLException {
getActiveMySQLConnection().setPreparedStatementCacheSqlLimit(cacheSqlLimit);
}
public void setProcessEscapeCodesForPrepStmts(boolean flag) {
getActiveMySQLConnection().setProcessEscapeCodesForPrepStmts(flag);
}
public void setProfileSQL(boolean flag) {
getActiveMySQLConnection().setProfileSQL(flag);
}
public void setProfileSql(boolean property) {
getActiveMySQLConnection().setProfileSql(property);
}
public void setProfilerEventHandler(String handler) {
getActiveMySQLConnection().setProfilerEventHandler(handler);
}
public void setPropertiesTransform(String value) {
getActiveMySQLConnection().setPropertiesTransform(value);
}
public void setQueriesBeforeRetryMaster(int property) throws SQLException {
getActiveMySQLConnection().setQueriesBeforeRetryMaster(property);
}
public void setQueryTimeoutKillsConnection(boolean queryTimeoutKillsConnection) {
getActiveMySQLConnection().setQueryTimeoutKillsConnection(queryTimeoutKillsConnection);
}
public void setReconnectAtTxEnd(boolean property) {
getActiveMySQLConnection().setReconnectAtTxEnd(property);
}
public void setRelaxAutoCommit(boolean property) {
getActiveMySQLConnection().setRelaxAutoCommit(property);
}
public void setReportMetricsIntervalMillis(int millis) throws SQLException {
getActiveMySQLConnection().setReportMetricsIntervalMillis(millis);
}
public void setRequireSSL(boolean property) {
getActiveMySQLConnection().setRequireSSL(property);
}
public void setResourceId(String resourceId) {
getActiveMySQLConnection().setResourceId(resourceId);
}
public void setResultSetSizeThreshold(int threshold) throws SQLException {
getActiveMySQLConnection().setResultSetSizeThreshold(threshold);
}
public void setRetainStatementAfterResultSetClose(boolean flag) {
getActiveMySQLConnection().setRetainStatementAfterResultSetClose(flag);
}
public void setRetriesAllDown(int retriesAllDown) throws SQLException {
getActiveMySQLConnection().setRetriesAllDown(retriesAllDown);
}
public void setRewriteBatchedStatements(boolean flag) {
getActiveMySQLConnection().setRewriteBatchedStatements(flag);
}
public void setRollbackOnPooledClose(boolean flag) {
getActiveMySQLConnection().setRollbackOnPooledClose(flag);
}
public void setRoundRobinLoadBalance(boolean flag) {
getActiveMySQLConnection().setRoundRobinLoadBalance(flag);
}
public void setRunningCTS13(boolean flag) {
getActiveMySQLConnection().setRunningCTS13(flag);
}
public void setSecondsBeforeRetryMaster(int property) throws SQLException {
getActiveMySQLConnection().setSecondsBeforeRetryMaster(property);
}
public void setSelfDestructOnPingMaxOperations(int maxOperations) throws SQLException {
getActiveMySQLConnection().setSelfDestructOnPingMaxOperations(maxOperations);
}
public void setSelfDestructOnPingSecondsLifetime(int seconds) throws SQLException {
getActiveMySQLConnection().setSelfDestructOnPingSecondsLifetime(seconds);
}
public void setServerTimezone(String property) {
getActiveMySQLConnection().setServerTimezone(property);
}
public void setSessionVariables(String variables) {
getActiveMySQLConnection().setSessionVariables(variables);
}
public void setSlowQueryThresholdMillis(int millis) throws SQLException {
getActiveMySQLConnection().setSlowQueryThresholdMillis(millis);
}
public void setSlowQueryThresholdNanos(long nanos) throws SQLException {
getActiveMySQLConnection().setSlowQueryThresholdNanos(nanos);
}
public void setSocketFactory(String name) {
getActiveMySQLConnection().setSocketFactory(name);
}
public void setSocketFactoryClassName(String property) {
getActiveMySQLConnection().setSocketFactoryClassName(property);
}
public void setSocketTimeout(int property) throws SQLException {
getActiveMySQLConnection().setSocketTimeout(property);
}
public void setStatementInterceptors(String value) {
getActiveMySQLConnection().setStatementInterceptors(value);
}
public void setStrictFloatingPoint(boolean property) {
getActiveMySQLConnection().setStrictFloatingPoint(property);
}
public void setStrictUpdates(boolean property) {
getActiveMySQLConnection().setStrictUpdates(property);
}
public void setTcpKeepAlive(boolean flag) {
getActiveMySQLConnection().setTcpKeepAlive(flag);
}
public void setTcpNoDelay(boolean flag) {
getActiveMySQLConnection().setTcpNoDelay(flag);
}
public void setTcpRcvBuf(int bufSize) throws SQLException {
getActiveMySQLConnection().setTcpRcvBuf(bufSize);
}
public void setTcpSndBuf(int bufSize) throws SQLException {
getActiveMySQLConnection().setTcpSndBuf(bufSize);
}
public void setTcpTrafficClass(int classFlags) throws SQLException {
getActiveMySQLConnection().setTcpTrafficClass(classFlags);
}
public void setTinyInt1isBit(boolean flag) {
getActiveMySQLConnection().setTinyInt1isBit(flag);
}
public void setTraceProtocol(boolean flag) {
getActiveMySQLConnection().setTraceProtocol(flag);
}
public void setTransformedBitIsBoolean(boolean flag) {
getActiveMySQLConnection().setTransformedBitIsBoolean(flag);
}
public void setTreatUtilDateAsTimestamp(boolean flag) {
getActiveMySQLConnection().setTreatUtilDateAsTimestamp(flag);
}
public void setTrustCertificateKeyStorePassword(String value) {
getActiveMySQLConnection().setTrustCertificateKeyStorePassword(value);
}
public void setTrustCertificateKeyStoreType(String value) {
getActiveMySQLConnection().setTrustCertificateKeyStoreType(value);
}
public void setTrustCertificateKeyStoreUrl(String value) {
getActiveMySQLConnection().setTrustCertificateKeyStoreUrl(value);
}
public void setUltraDevHack(boolean flag) {
getActiveMySQLConnection().setUltraDevHack(flag);
}
public void setUseAffectedRows(boolean flag) {
getActiveMySQLConnection().setUseAffectedRows(flag);
}
public void setUseBlobToStoreUTF8OutsideBMP(boolean flag) {
getActiveMySQLConnection().setUseBlobToStoreUTF8OutsideBMP(flag);
}
public void setUseColumnNamesInFindColumn(boolean flag) {
getActiveMySQLConnection().setUseColumnNamesInFindColumn(flag);
}
public void setUseCompression(boolean property) {
getActiveMySQLConnection().setUseCompression(property);
}
public void setUseConfigs(String configs) {
getActiveMySQLConnection().setUseConfigs(configs);
}
public void setUseCursorFetch(boolean flag) {
getActiveMySQLConnection().setUseCursorFetch(flag);
}
public void setUseDirectRowUnpack(boolean flag) {
getActiveMySQLConnection().setUseDirectRowUnpack(flag);
}
public void setUseDynamicCharsetInfo(boolean flag) {
getActiveMySQLConnection().setUseDynamicCharsetInfo(flag);
}
public void setUseFastDateParsing(boolean flag) {
getActiveMySQLConnection().setUseFastDateParsing(flag);
}
public void setUseFastIntParsing(boolean flag) {
getActiveMySQLConnection().setUseFastIntParsing(flag);
}
public void setUseGmtMillisForDatetimes(boolean flag) {
getActiveMySQLConnection().setUseGmtMillisForDatetimes(flag);
}
public void setUseHostsInPrivileges(boolean property) {
getActiveMySQLConnection().setUseHostsInPrivileges(property);
}
public void setUseInformationSchema(boolean flag) {
getActiveMySQLConnection().setUseInformationSchema(flag);
}
public void setUseJDBCCompliantTimezoneShift(boolean flag) {
getActiveMySQLConnection().setUseJDBCCompliantTimezoneShift(flag);
}
public void setUseJvmCharsetConverters(boolean flag) {
getActiveMySQLConnection().setUseJvmCharsetConverters(flag);
}
public void setUseLegacyDatetimeCode(boolean flag) {
getActiveMySQLConnection().setUseLegacyDatetimeCode(flag);
}
public void setSendFractionalSeconds(boolean flag) {
getActiveMySQLConnection().setSendFractionalSeconds(flag);
}
public void setUseLocalSessionState(boolean flag) {
getActiveMySQLConnection().setUseLocalSessionState(flag);
}
public void setUseLocalTransactionState(boolean flag) {
getActiveMySQLConnection().setUseLocalTransactionState(flag);
}
public void setUseNanosForElapsedTime(boolean flag) {
getActiveMySQLConnection().setUseNanosForElapsedTime(flag);
}
public void setUseOldAliasMetadataBehavior(boolean flag) {
getActiveMySQLConnection().setUseOldAliasMetadataBehavior(flag);
}
public void setUseOldUTF8Behavior(boolean flag) {
getActiveMySQLConnection().setUseOldUTF8Behavior(flag);
}
public void setUseOnlyServerErrorMessages(boolean flag) {
getActiveMySQLConnection().setUseOnlyServerErrorMessages(flag);
}
public void setUseReadAheadInput(boolean flag) {
getActiveMySQLConnection().setUseReadAheadInput(flag);
}
public void setUseSSL(boolean property) {
getActiveMySQLConnection().setUseSSL(property);
}
public void setUseSSPSCompatibleTimezoneShift(boolean flag) {
getActiveMySQLConnection().setUseSSPSCompatibleTimezoneShift(flag);
}
public void setUseServerPrepStmts(boolean flag) {
getActiveMySQLConnection().setUseServerPrepStmts(flag);
}
public void setUseServerPreparedStmts(boolean flag) {
getActiveMySQLConnection().setUseServerPreparedStmts(flag);
}
public void setUseSqlStateCodes(boolean flag) {
getActiveMySQLConnection().setUseSqlStateCodes(flag);
}
public void setUseStreamLengthsInPrepStmts(boolean property) {
getActiveMySQLConnection().setUseStreamLengthsInPrepStmts(property);
}
public void setUseTimezone(boolean property) {
getActiveMySQLConnection().setUseTimezone(property);
}
public void setUseUltraDevWorkAround(boolean property) {
getActiveMySQLConnection().setUseUltraDevWorkAround(property);
}
public void setUseUnbufferedInput(boolean flag) {
getActiveMySQLConnection().setUseUnbufferedInput(flag);
}
public void setUseUnicode(boolean flag) {
getActiveMySQLConnection().setUseUnicode(flag);
}
public void setUseUsageAdvisor(boolean useUsageAdvisorFlag) {
getActiveMySQLConnection().setUseUsageAdvisor(useUsageAdvisorFlag);
}
public void setUtf8OutsideBmpExcludedColumnNamePattern(String regexPattern) {
getActiveMySQLConnection().setUtf8OutsideBmpExcludedColumnNamePattern(regexPattern);
}
public void setUtf8OutsideBmpIncludedColumnNamePattern(String regexPattern) {
getActiveMySQLConnection().setUtf8OutsideBmpIncludedColumnNamePattern(regexPattern);
}
public void setVerifyServerCertificate(boolean flag) {
getActiveMySQLConnection().setVerifyServerCertificate(flag);
}
public void setYearIsDateType(boolean flag) {
getActiveMySQLConnection().setYearIsDateType(flag);
}
public void setZeroDateTimeBehavior(String behavior) {
getActiveMySQLConnection().setZeroDateTimeBehavior(behavior);
}
public boolean useUnbufferedInput() {
return getActiveMySQLConnection().useUnbufferedInput();
}
public StringBuilder generateConnectionCommentBlock(StringBuilder buf) {
return getActiveMySQLConnection().generateConnectionCommentBlock(buf);
}
public int getActiveStatementCount() {
return getActiveMySQLConnection().getActiveStatementCount();
}
public boolean getAutoCommit() throws SQLException {
return getActiveMySQLConnection().getAutoCommit();
}
public int getAutoIncrementIncrement() {
return getActiveMySQLConnection().getAutoIncrementIncrement();
}
public CachedResultSetMetaData getCachedMetaData(String sql) {
return getActiveMySQLConnection().getCachedMetaData(sql);
}
public Calendar getCalendarInstanceForSessionOrNew() {
return getActiveMySQLConnection().getCalendarInstanceForSessionOrNew();
}
public Timer getCancelTimer() {
return getActiveMySQLConnection().getCancelTimer();
}
public String getCatalog() throws SQLException {
return getActiveMySQLConnection().getCatalog();
}
public String getCharacterSetMetadata() {
return getActiveMySQLConnection().getCharacterSetMetadata();
}
public SingleByteCharsetConverter getCharsetConverter(String javaEncodingName) throws SQLException {
return getActiveMySQLConnection().getCharsetConverter(javaEncodingName);
}
/**
* @deprecated replaced by <code>getEncodingForIndex(int charsetIndex)</code>
*/
@Deprecated
public String getCharsetNameForIndex(int charsetIndex) throws SQLException {
return getEncodingForIndex(charsetIndex);
}
public String getEncodingForIndex(int collationIndex) throws SQLException {
return getActiveMySQLConnection().getEncodingForIndex(collationIndex);
}
public TimeZone getDefaultTimeZone() {
return getActiveMySQLConnection().getDefaultTimeZone();
}
public String getErrorMessageEncoding() {
return getActiveMySQLConnection().getErrorMessageEncoding();
}
public ExceptionInterceptor getExceptionInterceptor() {
return getActiveMySQLConnection().getExceptionInterceptor();
}
public int getHoldability() throws SQLException {
return getActiveMySQLConnection().getHoldability();
}
public String getHost() {
return getActiveMySQLConnection().getHost();
}
public String getHostPortPair() {
return getActiveMySQLConnection().getHostPortPair();
}
public long getId() {
return getActiveMySQLConnection().getId();
}
public long getIdleFor() {
return getActiveMySQLConnection().getIdleFor();
}
public MysqlIO getIO() throws SQLException {
return getActiveMySQLConnection().getIO();
}
/**
* @deprecated replaced by <code>getMultiHostSafeProxy()</code>
*/
@Deprecated
public MySQLConnection getLoadBalanceSafeProxy() {
return getMultiHostSafeProxy();
}
public MySQLConnection getMultiHostSafeProxy() {
return getThisAsProxy().getProxy();
}
public Log getLog() throws SQLException {
return getActiveMySQLConnection().getLog();
}
public int getMaxBytesPerChar(String javaCharsetName) throws SQLException {
return getActiveMySQLConnection().getMaxBytesPerChar(javaCharsetName);
}
public int getMaxBytesPerChar(Integer charsetIndex, String javaCharsetName) throws SQLException {
return getActiveMySQLConnection().getMaxBytesPerChar(charsetIndex, javaCharsetName);
}
public DatabaseMetaData getMetaData() throws SQLException {
return getActiveMySQLConnection().getMetaData();
}
public Statement getMetadataSafeStatement() throws SQLException {
return getActiveMySQLConnection().getMetadataSafeStatement();
}
public int getNetBufferLength() {
return getActiveMySQLConnection().getNetBufferLength();
}
public Properties getProperties() {
return getActiveMySQLConnection().getProperties();
}
public boolean getRequiresEscapingEncoder() {
return getActiveMySQLConnection().getRequiresEscapingEncoder();
}
/**
* @deprecated replaced by <code>getServerCharset()</code>
*/
@Deprecated
public String getServerCharacterEncoding() {
return getServerCharset();
}
public String getServerCharset() {
return getActiveMySQLConnection().getServerCharset();
}
public int getServerMajorVersion() {
return getActiveMySQLConnection().getServerMajorVersion();
}
public int getServerMinorVersion() {
return getActiveMySQLConnection().getServerMinorVersion();
}
public int getServerSubMinorVersion() {
return getActiveMySQLConnection().getServerSubMinorVersion();
}
public TimeZone getServerTimezoneTZ() {
return getActiveMySQLConnection().getServerTimezoneTZ();
}
public String getServerVariable(String variableName) {
return getActiveMySQLConnection().getServerVariable(variableName);
}
public String getServerVersion() {
return getActiveMySQLConnection().getServerVersion();
}
public Calendar getSessionLockedCalendar() {
return getActiveMySQLConnection().getSessionLockedCalendar();
}
public String getStatementComment() {
return getActiveMySQLConnection().getStatementComment();
}
public List<StatementInterceptorV2> getStatementInterceptorsInstances() {
return getActiveMySQLConnection().getStatementInterceptorsInstances();
}
public int getTransactionIsolation() throws SQLException {
return getActiveMySQLConnection().getTransactionIsolation();
}
public Map<String, Class<?>> getTypeMap() throws SQLException {
return getActiveMySQLConnection().getTypeMap();
}
public String getURL() {
return getActiveMySQLConnection().getURL();
}
public String getUser() {
return getActiveMySQLConnection().getUser();
}
public Calendar getUtcCalendar() {
return getActiveMySQLConnection().getUtcCalendar();
}
public SQLWarning getWarnings() throws SQLException {
return getActiveMySQLConnection().getWarnings();
}
public boolean hasSameProperties(Connection c) {
return getActiveMySQLConnection().hasSameProperties(c);
}
@Deprecated
public boolean hasTriedMaster() {
return getActiveMySQLConnection().hasTriedMaster();
}
public void incrementNumberOfPreparedExecutes() {
getActiveMySQLConnection().incrementNumberOfPreparedExecutes();
}
public void incrementNumberOfPrepares() {
getActiveMySQLConnection().incrementNumberOfPrepares();
}
public void incrementNumberOfResultSetsCreated() {
getActiveMySQLConnection().incrementNumberOfResultSetsCreated();
}
public void initializeExtension(Extension ex) throws SQLException {
getActiveMySQLConnection().initializeExtension(ex);
}
public void initializeResultsMetadataFromCache(String sql, CachedResultSetMetaData cachedMetaData, ResultSetInternalMethods resultSet) throws SQLException {
getActiveMySQLConnection().initializeResultsMetadataFromCache(sql, cachedMetaData, resultSet);
}
public void initializeSafeStatementInterceptors() throws SQLException {
getActiveMySQLConnection().initializeSafeStatementInterceptors();
}
public boolean isAbonormallyLongQuery(long millisOrNanos) {
return getActiveMySQLConnection().isAbonormallyLongQuery(millisOrNanos);
}
public boolean isClientTzUTC() {
return getActiveMySQLConnection().isClientTzUTC();
}
public boolean isCursorFetchEnabled() throws SQLException {
return getActiveMySQLConnection().isCursorFetchEnabled();
}
public boolean isInGlobalTx() {
return getActiveMySQLConnection().isInGlobalTx();
}
public boolean isMasterConnection() {
return getThisAsProxy().isMasterConnection();
}
public boolean isNoBackslashEscapesSet() {
return getActiveMySQLConnection().isNoBackslashEscapesSet();
}
public boolean isReadInfoMsgEnabled() {
return getActiveMySQLConnection().isReadInfoMsgEnabled();
}
public boolean isReadOnly() throws SQLException {
return getActiveMySQLConnection().isReadOnly();
}
public boolean isReadOnly(boolean useSessionStatus) throws SQLException {
return getActiveMySQLConnection().isReadOnly(useSessionStatus);
}
public boolean isRunningOnJDK13() {
return getActiveMySQLConnection().isRunningOnJDK13();
}
public boolean isSameResource(Connection otherConnection) {
return getActiveMySQLConnection().isSameResource(otherConnection);
}
public boolean isServerTzUTC() {
return getActiveMySQLConnection().isServerTzUTC();
}
public boolean lowerCaseTableNames() {
return getActiveMySQLConnection().lowerCaseTableNames();
}
public String nativeSQL(String sql) throws SQLException {
return getActiveMySQLConnection().nativeSQL(sql);
}
public boolean parserKnowsUnicode() {
return getActiveMySQLConnection().parserKnowsUnicode();
}
public void ping() throws SQLException {
getActiveMySQLConnection().ping();
}
public void pingInternal(boolean checkForClosedConnection, int timeoutMillis) throws SQLException {
getActiveMySQLConnection().pingInternal(checkForClosedConnection, timeoutMillis);
}
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
return getActiveMySQLConnection().prepareCall(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
}
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
return getActiveMySQLConnection().prepareCall(sql, resultSetType, resultSetConcurrency);
}
public CallableStatement prepareCall(String sql) throws SQLException {
return getActiveMySQLConnection().prepareCall(sql);
}
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
return getActiveMySQLConnection().prepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
}
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
return getActiveMySQLConnection().prepareStatement(sql, resultSetType, resultSetConcurrency);
}
public PreparedStatement prepareStatement(String sql, int autoGenKeyIndex) throws SQLException {
return getActiveMySQLConnection().prepareStatement(sql, autoGenKeyIndex);
}
public PreparedStatement prepareStatement(String sql, int[] autoGenKeyIndexes) throws SQLException {
return getActiveMySQLConnection().prepareStatement(sql, autoGenKeyIndexes);
}
public PreparedStatement prepareStatement(String sql, String[] autoGenKeyColNames) throws SQLException {
return getActiveMySQLConnection().prepareStatement(sql, autoGenKeyColNames);
}
public PreparedStatement prepareStatement(String sql) throws SQLException {
return getActiveMySQLConnection().prepareStatement(sql);
}
public void realClose(boolean calledExplicitly, boolean issueRollback, boolean skipLocalTeardown, Throwable reason) throws SQLException {
getActiveMySQLConnection().realClose(calledExplicitly, issueRollback, skipLocalTeardown, reason);
}
public void recachePreparedStatement(ServerPreparedStatement pstmt) throws SQLException {
getActiveMySQLConnection().recachePreparedStatement(pstmt);
}
public void decachePreparedStatement(ServerPreparedStatement pstmt) throws SQLException {
getActiveMySQLConnection().decachePreparedStatement(pstmt);
}
public void registerQueryExecutionTime(long queryTimeMs) {
getActiveMySQLConnection().registerQueryExecutionTime(queryTimeMs);
}
public void registerStatement(com.mysql.jdbc.Statement stmt) {
getActiveMySQLConnection().registerStatement(stmt);
}
public void releaseSavepoint(Savepoint arg0) throws SQLException {
getActiveMySQLConnection().releaseSavepoint(arg0);
}
public void reportNumberOfTablesAccessed(int numTablesAccessed) {
getActiveMySQLConnection().reportNumberOfTablesAccessed(numTablesAccessed);
}
public void reportQueryTime(long millisOrNanos) {
getActiveMySQLConnection().reportQueryTime(millisOrNanos);
}
public void resetServerState() throws SQLException {
getActiveMySQLConnection().resetServerState();
}
public void rollback() throws SQLException {
getActiveMySQLConnection().rollback();
}
public void rollback(Savepoint savepoint) throws SQLException {
getActiveMySQLConnection().rollback(savepoint);
}
public PreparedStatement serverPrepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException {
return getActiveMySQLConnection().serverPrepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
}
public PreparedStatement serverPrepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException {
return getActiveMySQLConnection().serverPrepareStatement(sql, resultSetType, resultSetConcurrency);
}
public PreparedStatement serverPrepareStatement(String sql, int autoGenKeyIndex) throws SQLException {
return getActiveMySQLConnection().serverPrepareStatement(sql, autoGenKeyIndex);
}
public PreparedStatement serverPrepareStatement(String sql, int[] autoGenKeyIndexes) throws SQLException {
return getActiveMySQLConnection().serverPrepareStatement(sql, autoGenKeyIndexes);
}
public PreparedStatement serverPrepareStatement(String sql, String[] autoGenKeyColNames) throws SQLException {
return getActiveMySQLConnection().serverPrepareStatement(sql, autoGenKeyColNames);
}
public PreparedStatement serverPrepareStatement(String sql) throws SQLException {
return getActiveMySQLConnection().serverPrepareStatement(sql);
}
public boolean serverSupportsConvertFn() throws SQLException {
return getActiveMySQLConnection().serverSupportsConvertFn();
}
public void setAutoCommit(boolean autoCommitFlag) throws SQLException {
getActiveMySQLConnection().setAutoCommit(autoCommitFlag);
}
public void setCatalog(String catalog) throws SQLException {
getActiveMySQLConnection().setCatalog(catalog);
}
public void setFailedOver(boolean flag) {
getActiveMySQLConnection().setFailedOver(flag);
}
public void setHoldability(int arg0) throws SQLException {
getActiveMySQLConnection().setHoldability(arg0);
}
public void setInGlobalTx(boolean flag) {
getActiveMySQLConnection().setInGlobalTx(flag);
}
@Deprecated
public void setPreferSlaveDuringFailover(boolean flag) {
getActiveMySQLConnection().setPreferSlaveDuringFailover(flag);
}
public void setProxy(MySQLConnection proxy) {
getThisAsProxy().setProxy(proxy);
}
public void setReadInfoMsgEnabled(boolean flag) {
getActiveMySQLConnection().setReadInfoMsgEnabled(flag);
}
public void setReadOnly(boolean readOnlyFlag) throws SQLException {
getActiveMySQLConnection().setReadOnly(readOnlyFlag);
}
public void setReadOnlyInternal(boolean readOnlyFlag) throws SQLException {
getActiveMySQLConnection().setReadOnlyInternal(readOnlyFlag);
}
public Savepoint setSavepoint() throws SQLException {
return getActiveMySQLConnection().setSavepoint();
}
public Savepoint setSavepoint(String name) throws SQLException {
return getActiveMySQLConnection().setSavepoint(name);
}
public void setStatementComment(String comment) {
getActiveMySQLConnection().setStatementComment(comment);
}
public void setTransactionIsolation(int level) throws SQLException {
getActiveMySQLConnection().setTransactionIsolation(level);
}
public void shutdownServer() throws SQLException {
getActiveMySQLConnection().shutdownServer();
}
public boolean storesLowerCaseTableName() {
return getActiveMySQLConnection().storesLowerCaseTableName();
}
public boolean supportsIsolationLevel() {
return getActiveMySQLConnection().supportsIsolationLevel();
}
public boolean supportsQuotedIdentifiers() {
return getActiveMySQLConnection().supportsQuotedIdentifiers();
}
public boolean supportsTransactions() {
return getActiveMySQLConnection().supportsTransactions();
}
public void throwConnectionClosedException() throws SQLException {
getActiveMySQLConnection().throwConnectionClosedException();
}
public void transactionBegun() throws SQLException {
getActiveMySQLConnection().transactionBegun();
}
public void transactionCompleted() throws SQLException {
getActiveMySQLConnection().transactionCompleted();
}
public void unregisterStatement(com.mysql.jdbc.Statement stmt) {
getActiveMySQLConnection().unregisterStatement(stmt);
}
public void unSafeStatementInterceptors() throws SQLException {
getActiveMySQLConnection().unSafeStatementInterceptors();
}
public boolean useAnsiQuotedIdentifiers() {
return getActiveMySQLConnection().useAnsiQuotedIdentifiers();
}
public boolean versionMeetsMinimum(int major, int minor, int subminor) throws SQLException {
return getActiveMySQLConnection().versionMeetsMinimum(major, minor, subminor);
}
public boolean isClosed() throws SQLException {
return getThisAsProxy().isClosed;
}
public boolean getHoldResultsOpenOverStatementClose() {
return getActiveMySQLConnection().getHoldResultsOpenOverStatementClose();
}
public String getLoadBalanceConnectionGroup() {
return getActiveMySQLConnection().getLoadBalanceConnectionGroup();
}
public boolean getLoadBalanceEnableJMX() {
return getActiveMySQLConnection().getLoadBalanceEnableJMX();
}
public String getLoadBalanceExceptionChecker() {
return getActiveMySQLConnection().getLoadBalanceExceptionChecker();
}
public String getLoadBalanceSQLExceptionSubclassFailover() {
return getActiveMySQLConnection().getLoadBalanceSQLExceptionSubclassFailover();
}
public String getLoadBalanceSQLStateFailover() {
return getActiveMySQLConnection().getLoadBalanceSQLStateFailover();
}
public void setLoadBalanceConnectionGroup(String loadBalanceConnectionGroup) {
getActiveMySQLConnection().setLoadBalanceConnectionGroup(loadBalanceConnectionGroup);
}
public void setLoadBalanceEnableJMX(boolean loadBalanceEnableJMX) {
getActiveMySQLConnection().setLoadBalanceEnableJMX(loadBalanceEnableJMX);
}
public void setLoadBalanceExceptionChecker(String loadBalanceExceptionChecker) {
getActiveMySQLConnection().setLoadBalanceExceptionChecker(loadBalanceExceptionChecker);
}
public void setLoadBalanceSQLExceptionSubclassFailover(String loadBalanceSQLExceptionSubclassFailover) {
getActiveMySQLConnection().setLoadBalanceSQLExceptionSubclassFailover(loadBalanceSQLExceptionSubclassFailover);
}
public void setLoadBalanceSQLStateFailover(String loadBalanceSQLStateFailover) {
getActiveMySQLConnection().setLoadBalanceSQLStateFailover(loadBalanceSQLStateFailover);
}
public void setLoadBalanceHostRemovalGracePeriod(int loadBalanceHostRemovalGracePeriod) throws SQLException {
getActiveMySQLConnection().setLoadBalanceHostRemovalGracePeriod(loadBalanceHostRemovalGracePeriod);
}
public int getLoadBalanceHostRemovalGracePeriod() {
return getActiveMySQLConnection().getLoadBalanceHostRemovalGracePeriod();
}
public boolean isProxySet() {
return this.getActiveMySQLConnection().isProxySet();
}
public String getLoadBalanceAutoCommitStatementRegex() {
return getActiveMySQLConnection().getLoadBalanceAutoCommitStatementRegex();
}
public int getLoadBalanceAutoCommitStatementThreshold() {
return getActiveMySQLConnection().getLoadBalanceAutoCommitStatementThreshold();
}
public void setLoadBalanceAutoCommitStatementRegex(String loadBalanceAutoCommitStatementRegex) {
getActiveMySQLConnection().setLoadBalanceAutoCommitStatementRegex(loadBalanceAutoCommitStatementRegex);
}
public void setLoadBalanceAutoCommitStatementThreshold(int loadBalanceAutoCommitStatementThreshold) throws SQLException {
getActiveMySQLConnection().setLoadBalanceAutoCommitStatementThreshold(loadBalanceAutoCommitStatementThreshold);
}
public boolean getIncludeThreadDumpInDeadlockExceptions() {
return getActiveMySQLConnection().getIncludeThreadDumpInDeadlockExceptions();
}
public void setIncludeThreadDumpInDeadlockExceptions(boolean flag) {
getActiveMySQLConnection().setIncludeThreadDumpInDeadlockExceptions(flag);
}
public void setTypeMap(Map<String, Class<?>> map) throws SQLException {
getActiveMySQLConnection().setTypeMap(map);
}
public boolean getIncludeThreadNamesAsStatementComment() {
return getActiveMySQLConnection().getIncludeThreadNamesAsStatementComment();
}
public void setIncludeThreadNamesAsStatementComment(boolean flag) {
getActiveMySQLConnection().setIncludeThreadNamesAsStatementComment(flag);
}
public boolean isServerLocal() throws SQLException {
return getActiveMySQLConnection().isServerLocal();
}
public void setAuthenticationPlugins(String authenticationPlugins) {
getActiveMySQLConnection().setAuthenticationPlugins(authenticationPlugins);
}
public String getAuthenticationPlugins() {
return getActiveMySQLConnection().getAuthenticationPlugins();
}
public void setDisabledAuthenticationPlugins(String disabledAuthenticationPlugins) {
getActiveMySQLConnection().setDisabledAuthenticationPlugins(disabledAuthenticationPlugins);
}
public String getDisabledAuthenticationPlugins() {
return getActiveMySQLConnection().getDisabledAuthenticationPlugins();
}
public void setDefaultAuthenticationPlugin(String defaultAuthenticationPlugin) {
getActiveMySQLConnection().setDefaultAuthenticationPlugin(defaultAuthenticationPlugin);
}
public String getDefaultAuthenticationPlugin() {
return getActiveMySQLConnection().getDefaultAuthenticationPlugin();
}
public void setParseInfoCacheFactory(String factoryClassname) {
getActiveMySQLConnection().setParseInfoCacheFactory(factoryClassname);
}
public String getParseInfoCacheFactory() {
return getActiveMySQLConnection().getParseInfoCacheFactory();
}
public void setSchema(String schema) throws SQLException {
getActiveMySQLConnection().setSchema(schema);
}
public String getSchema() throws SQLException {
return getActiveMySQLConnection().getSchema();
}
public void abort(Executor executor) throws SQLException {
getActiveMySQLConnection().abort(executor);
}
public void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException {
getActiveMySQLConnection().setNetworkTimeout(executor, milliseconds);
}
public int getNetworkTimeout() throws SQLException {
return getActiveMySQLConnection().getNetworkTimeout();
}
public void setServerConfigCacheFactory(String factoryClassname) {
getActiveMySQLConnection().setServerConfigCacheFactory(factoryClassname);
}
public String getServerConfigCacheFactory() {
return getActiveMySQLConnection().getServerConfigCacheFactory();
}
public void setDisconnectOnExpiredPasswords(boolean disconnectOnExpiredPasswords) {
getActiveMySQLConnection().setDisconnectOnExpiredPasswords(disconnectOnExpiredPasswords);
}
public boolean getDisconnectOnExpiredPasswords() {
return getActiveMySQLConnection().getDisconnectOnExpiredPasswords();
}
public void setGetProceduresReturnsFunctions(boolean getProcedureReturnsFunctions) {
getActiveMySQLConnection().setGetProceduresReturnsFunctions(getProcedureReturnsFunctions);
}
public boolean getGetProceduresReturnsFunctions() {
return getActiveMySQLConnection().getGetProceduresReturnsFunctions();
}
public Object getConnectionMutex() {
return getActiveMySQLConnection().getConnectionMutex();
}
public String getConnectionAttributes() throws SQLException {
return getActiveMySQLConnection().getConnectionAttributes();
}
public boolean getAllowMasterDownConnections() {
return getActiveMySQLConnection().getAllowMasterDownConnections();
}
public void setAllowMasterDownConnections(boolean connectIfMasterDown) {
getActiveMySQLConnection().setAllowMasterDownConnections(connectIfMasterDown);
}
public boolean getAllowSlaveDownConnections() {
return getActiveMySQLConnection().getAllowSlaveDownConnections();
}
public void setAllowSlaveDownConnections(boolean connectIfSlaveDown) {
getActiveMySQLConnection().setAllowSlaveDownConnections(connectIfSlaveDown);
}
public boolean getReadFromMasterWhenNoSlaves() {
return getActiveMySQLConnection().getReadFromMasterWhenNoSlaves();
}
public void setReadFromMasterWhenNoSlaves(boolean useMasterIfSlavesDown) {
getActiveMySQLConnection().setReadFromMasterWhenNoSlaves(useMasterIfSlavesDown);
}
public boolean getReplicationEnableJMX() {
return getActiveMySQLConnection().getReplicationEnableJMX();
}
public void setReplicationEnableJMX(boolean replicationEnableJMX) {
getActiveMySQLConnection().setReplicationEnableJMX(replicationEnableJMX);
}
public void setDetectCustomCollations(boolean detectCustomCollations) {
getActiveMySQLConnection().setDetectCustomCollations(detectCustomCollations);
}
public boolean getDetectCustomCollations() {
return getActiveMySQLConnection().getDetectCustomCollations();
}
public int getSessionMaxRows() {
return getActiveMySQLConnection().getSessionMaxRows();
}
public void setSessionMaxRows(int max) throws SQLException {
getActiveMySQLConnection().setSessionMaxRows(max);
}
public ProfilerEventHandler getProfilerEventHandlerInstance() {
return getActiveMySQLConnection().getProfilerEventHandlerInstance();
}
public void setProfilerEventHandlerInstance(ProfilerEventHandler h) {
getActiveMySQLConnection().setProfilerEventHandlerInstance(h);
}
public String getServerRSAPublicKeyFile() {
return getActiveMySQLConnection().getServerRSAPublicKeyFile();
}
public void setServerRSAPublicKeyFile(String serverRSAPublicKeyFile) throws SQLException {
getActiveMySQLConnection().setServerRSAPublicKeyFile(serverRSAPublicKeyFile);
}
public boolean getAllowPublicKeyRetrieval() {
return getActiveMySQLConnection().getAllowPublicKeyRetrieval();
}
public void setAllowPublicKeyRetrieval(boolean allowPublicKeyRetrieval) throws SQLException {
getActiveMySQLConnection().setAllowPublicKeyRetrieval(allowPublicKeyRetrieval);
}
public void setDontCheckOnDuplicateKeyUpdateInSQL(boolean dontCheckOnDuplicateKeyUpdateInSQL) {
getActiveMySQLConnection().setDontCheckOnDuplicateKeyUpdateInSQL(dontCheckOnDuplicateKeyUpdateInSQL);
}
public boolean getDontCheckOnDuplicateKeyUpdateInSQL() {
return getActiveMySQLConnection().getDontCheckOnDuplicateKeyUpdateInSQL();
}
public void setSocksProxyHost(String socksProxyHost) {
getActiveMySQLConnection().setSocksProxyHost(socksProxyHost);
}
public String getSocksProxyHost() {
return getActiveMySQLConnection().getSocksProxyHost();
}
public void setSocksProxyPort(int socksProxyPort) throws SQLException {
getActiveMySQLConnection().setSocksProxyPort(socksProxyPort);
}
public int getSocksProxyPort() {
return getActiveMySQLConnection().getSocksProxyPort();
}
public boolean getReadOnlyPropagatesToServer() {
return getActiveMySQLConnection().getReadOnlyPropagatesToServer();
}
public void setReadOnlyPropagatesToServer(boolean flag) {
getActiveMySQLConnection().setReadOnlyPropagatesToServer(flag);
}
public String getEnabledSSLCipherSuites() {
return getActiveMySQLConnection().getEnabledSSLCipherSuites();
}
public void setEnabledSSLCipherSuites(String cipherSuites) {
getActiveMySQLConnection().setEnabledSSLCipherSuites(cipherSuites);
}
public boolean getEnableEscapeProcessing() {
return getActiveMySQLConnection().getEnableEscapeProcessing();
}
public void setEnableEscapeProcessing(boolean flag) {
getActiveMySQLConnection().setEnableEscapeProcessing(flag);
}
public boolean isUseSSLExplicit() {
return getActiveMySQLConnection().isUseSSLExplicit();
}
}