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
|
/*
* Copyright (c) 1998, 2022 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2022 IBM Corporation. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
// 09/14/2011-2.3.1 Guy Pelletier
// - 357533: Allow DDL queries to execute even when Multitenant entities are part of the PU
// 02/19/2015 - Rick Curtis
// - 458877 : Add national character support
// 02/24/2016-2.6.0 Rick Curtis
// - 460740: Fix pessimistic locking with setFirst/Max results on DB2
// 03/13/2015 - Jody Grassel
// - 462103 : SQL for Stored Procedure named parameter with DB2 generated with incorrect marker
// 04/15/2016 - Dalia Abo Sheasha
// - 491824: Setting lock timeout to 0 issues a NOWAIT causing an error in DB2
// 08/22/2017 - Will Dazey
// - 521037: DB2 default schema is doubled for sequence queries
// 12/06/2018 - Will Dazey
// - 542491: Add new 'eclipselink.jdbc.force-bind-parameters' property to force enable binding
package org.eclipse.persistence.platform.database;
import java.io.*;
import java.sql.*;
import java.util.*;
import org.eclipse.persistence.exceptions.ValidationException;
import org.eclipse.persistence.expressions.*;
import org.eclipse.persistence.internal.helper.*;
import org.eclipse.persistence.internal.sessions.AbstractRecord;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.internal.databaseaccess.DatabaseCall;
import org.eclipse.persistence.internal.databaseaccess.DatasourceCall.ParameterType;
import org.eclipse.persistence.internal.databaseaccess.FieldTypeDefinition;
import org.eclipse.persistence.internal.expressions.ConstantExpression;
import org.eclipse.persistence.internal.expressions.ExpressionJavaPrinter;
import org.eclipse.persistence.internal.expressions.ExpressionSQLPrinter;
import org.eclipse.persistence.internal.expressions.ParameterExpression;
import org.eclipse.persistence.internal.expressions.SQLSelectStatement;
import org.eclipse.persistence.queries.*;
import org.eclipse.persistence.tools.schemaframework.FieldDefinition;
/**
* <p>
* <b>Purpose</b>: Provides DB2 specific behavior.
* <p>
* <b>Responsibilities</b>:
* <ul>
* <li>Support for schema creation.
* <li>Native SQL for byte[], Date, Time, {@literal &} Timestamp.
* <li>Support for table qualified names.
* <li>Support for stored procedures.
* <li>Support for temp tables.
* <li>Support for casting.
* <li>Support for database functions.
* <li>Support for identity sequencing.
* <li>Support for SEQUENCE sequencing.
* </ul>
*
* @since TOPLink/Java 1.0
*/
public class DB2Platform extends org.eclipse.persistence.platform.database.DatabasePlatform {
public DB2Platform() {
super();
//com.ibm.db2.jcc.DB2Types.CURSOR
this.cursorCode = -100008;
this.shouldBindLiterals = false;
this.pingSQL = "VALUES(1)";
}
@Override
public void initializeConnectionData(Connection connection) throws SQLException {
// DB2 database doesn't support NVARCHAR column types and as such doesn't support calling
// get/setNString() on the driver.
this.driverSupportsNationalCharacterVarying = false;
}
/**
* INTERNAL:
* Append a byte[] in native DB@ format BLOB(hexString) if usesNativeSQL(),
* otherwise use ODBC format from DatabasePLatform.
*/
@Override
protected void appendByteArray(byte[] bytes, Writer writer) throws IOException {
if (usesNativeSQL()) {
writer.write("BLOB(x'");
Helper.writeHexString(bytes, writer);
writer.write("')");
} else {
super.appendByteArray(bytes, writer);
}
}
/**
* INTERNAL:
* Appends the Date in native format if usesNativeSQL() otherwise use ODBC
* format from DatabasePlatform. Native format: 'mm/dd/yyyy'
*/
@Override
protected void appendDate(java.sql.Date date, Writer writer) throws IOException {
if (usesNativeSQL()) {
appendDB2Date(date, writer);
} else {
super.appendDate(date, writer);
}
}
/**
* INTERNAL:
* Write a timestamp in DB2 specific format (mm/dd/yyyy).
*/
protected void appendDB2Date(java.sql.Date date, Writer writer) throws IOException {
writer.write("'");
// PERF: Avoid deprecated get methods, that are now very inefficient and
// used from toString.
Calendar calendar = Helper.allocateCalendar();
calendar.setTime(date);
if ((calendar.get(Calendar.MONTH) + 1) < 10) {
writer.write('0');
}
writer.write(Integer.toString(calendar.get(Calendar.MONTH) + 1));
writer.write('/');
if (calendar.get(Calendar.DATE) < 10) {
writer.write('0');
}
writer.write(Integer.toString(calendar.get(Calendar.DATE)));
writer.write('/');
writer.write(Integer.toString(calendar.get(Calendar.YEAR)));
writer.write("'");
Helper.releaseCalendar(calendar);
}
/**
* INTERNAL:
* Write a timestamp in DB2 specific format (yyyy-mm-dd-hh.mm.ss.ffffff).
*/
protected void appendDB2Timestamp(java.sql.Timestamp timestamp, Writer writer) throws IOException {
// PERF: Avoid deprecated get methods, that are now very inefficient and
// used from toString.
Calendar calendar = Helper.allocateCalendar();
calendar.setTime(timestamp);
writer.write(Helper.printDate(calendar));
writer.write('-');
if (calendar.get(Calendar.HOUR_OF_DAY) < 10) {
writer.write('0');
}
writer.write(Integer.toString(calendar.get(Calendar.HOUR_OF_DAY)));
writer.write('.');
if (calendar.get(Calendar.MINUTE) < 10) {
writer.write('0');
}
writer.write(Integer.toString(calendar.get(Calendar.MINUTE)));
writer.write('.');
if (calendar.get(Calendar.SECOND) < 10) {
writer.write('0');
}
writer.write(Integer.toString(calendar.get(Calendar.SECOND)));
writer.write('.');
Helper.releaseCalendar(calendar);
// Must truncate the nanos to six decimal places,
// it is actually a complex algorithm...
String nanoString = Integer.toString(timestamp.getNanos());
int numberOfZeros = 0;
for (int num = Math.min(9 - nanoString.length(), 6); num > 0; num--) {
writer.write('0');
numberOfZeros++;
}
if ((nanoString.length() + numberOfZeros) > 6) {
nanoString = nanoString.substring(0, (6 - numberOfZeros));
}
writer.write(nanoString);
}
/**
* Write a timestamp in DB2 specific format (yyyy-mm-dd-hh.mm.ss.ffffff).
*/
protected void appendDB2Calendar(Calendar calendar, Writer writer) throws IOException {
int hour;
int minute;
int second;
if (!Helper.getDefaultTimeZone().equals(calendar.getTimeZone())) {
// Must convert the calendar to the local timezone if different, as
// dates have no timezone (always local).
Calendar localCalendar = Helper.allocateCalendar();
localCalendar.setTimeInMillis(calendar.getTimeInMillis());
hour = calendar.get(Calendar.HOUR_OF_DAY);
minute = calendar.get(Calendar.MINUTE);
second = calendar.get(Calendar.SECOND);
Helper.releaseCalendar(localCalendar);
} else {
hour = calendar.get(Calendar.HOUR_OF_DAY);
minute = calendar.get(Calendar.MINUTE);
second = calendar.get(Calendar.SECOND);
}
writer.write(Helper.printDate(calendar));
writer.write('-');
if (hour < 10) {
writer.write('0');
}
writer.write(Integer.toString(hour));
writer.write('.');
if (minute < 10) {
writer.write('0');
}
writer.write(Integer.toString(minute));
writer.write('.');
if (second < 10) {
writer.write('0');
}
writer.write(Integer.toString(second));
writer.write('.');
// Must truncate the nanos to six decimal places,
// it is actually a complex algorithm...
String millisString = Integer.toString(calendar.get(Calendar.MILLISECOND));
int numberOfZeros = 0;
for (int num = Math.min(3 - millisString.length(), 3); num > 0; num--) {
writer.write('0');
numberOfZeros++;
}
if ((millisString.length() + numberOfZeros) > 3) {
millisString = millisString.substring(0, (3 - numberOfZeros));
}
writer.write(millisString);
}
/**
* INTERNAL:
* Append the Time in Native format if usesNativeSQL() otherwise use ODBC
* format from DAtabasePlatform. Native Format: 'hh:mm:ss'
*/
@Override
protected void appendTime(java.sql.Time time, Writer writer) throws IOException {
if (usesNativeSQL()) {
writer.write("'");
writer.write(Helper.printTime(time));
writer.write("'");
} else {
super.appendTime(time, writer);
}
}
/**
* INTERNAL:
* Append the Timestamp in native format if usesNativeSQL() is true
* otherwise use ODBC format from DatabasePlatform. Native format:
* 'YYYY-MM-DD-hh.mm.ss.SSSSSS'
*/
@Override
protected void appendTimestamp(java.sql.Timestamp timestamp, Writer writer) throws IOException {
if (usesNativeSQL()) {
writer.write("'");
appendDB2Timestamp(timestamp, writer);
writer.write("'");
} else {
super.appendTimestamp(timestamp, writer);
}
}
/**
* INTERNAL:
* Append the Timestamp in native format if usesNativeSQL() is true
* otherwise use ODBC format from DatabasePlatform. Native format:
* 'YYYY-MM-DD-hh.mm.ss.SSSSSS'
*/
@Override
protected void appendCalendar(Calendar calendar, Writer writer) throws IOException {
if (usesNativeSQL()) {
writer.write("'");
appendDB2Calendar(calendar, writer);
writer.write("'");
} else {
super.appendCalendar(calendar, writer);
}
}
@Override
protected Hashtable buildFieldTypes() {
Hashtable fieldTypeMapping = new Hashtable();
fieldTypeMapping.put(Boolean.class, new FieldTypeDefinition("SMALLINT DEFAULT 0", false));
fieldTypeMapping.put(Integer.class, new FieldTypeDefinition("INTEGER", false));
fieldTypeMapping.put(Long.class, new FieldTypeDefinition("BIGINT", false));
fieldTypeMapping.put(Float.class, new FieldTypeDefinition("FLOAT", false));
fieldTypeMapping.put(Double.class, new FieldTypeDefinition("FLOAT", false));
fieldTypeMapping.put(Short.class, new FieldTypeDefinition("SMALLINT", false));
fieldTypeMapping.put(Byte.class, new FieldTypeDefinition("SMALLINT", false));
fieldTypeMapping.put(java.math.BigInteger.class, new FieldTypeDefinition("BIGINT", false));
fieldTypeMapping.put(java.math.BigDecimal.class, new FieldTypeDefinition("DECIMAL", 15));
fieldTypeMapping.put(Number.class, new FieldTypeDefinition("DECIMAL", 15));
if(getUseNationalCharacterVaryingTypeForString()){
fieldTypeMapping.put(String.class, new FieldTypeDefinition("VARCHAR", DEFAULT_VARCHAR_SIZE, "FOR MIXED DATA"));
}else {
fieldTypeMapping.put(String.class, new FieldTypeDefinition("VARCHAR", DEFAULT_VARCHAR_SIZE));
}
fieldTypeMapping.put(Character.class, new FieldTypeDefinition("CHAR", 1));
fieldTypeMapping.put(Byte[].class, new FieldTypeDefinition("BLOB", 64000));
fieldTypeMapping.put(Character[].class, new FieldTypeDefinition("CLOB", 64000));
fieldTypeMapping.put(byte[].class, new FieldTypeDefinition("BLOB", 64000));
fieldTypeMapping.put(char[].class, new FieldTypeDefinition("CLOB", 64000));
fieldTypeMapping.put(java.sql.Blob.class, new FieldTypeDefinition("BLOB", 64000));
fieldTypeMapping.put(java.sql.Clob.class, new FieldTypeDefinition("CLOB", 64000));
fieldTypeMapping.put(java.sql.Date.class, new FieldTypeDefinition("DATE", false));
fieldTypeMapping.put(java.sql.Time.class, new FieldTypeDefinition("TIME", false));
fieldTypeMapping.put(java.sql.Timestamp.class, new FieldTypeDefinition("TIMESTAMP", false));
return fieldTypeMapping;
}
/**
* INTERNAL: returns the maximum number of characters that can be used in a
* field name on this platform.
*/
@Override
public int getMaxFieldNameSize() {
return 128;
}
/**
* INTERNAL: returns the maximum number of characters that can be used in a
* foreign key name on this platform.
*/
@Override
public int getMaxForeignKeyNameSize() {
return 18;
}
/**
* INTERNAL:
* returns the maximum number of characters that can be used in a unique key
* name on this platform.
*/
@Override
public int getMaxUniqueKeyNameSize() {
return 18;
}
/**
* INTERNAL:
* Return the catalog information through using the native SQL catalog
* selects. This is required because many JDBC driver do not support
* meta-data. Wildcards can be passed as arguments.
* This is currently not used.
*/
public Vector getNativeTableInfo(String table, String creator, AbstractSession session) {
String query = "SELECT * FROM SYSIBM.SYSTABLES WHERE TBCREATOR NOT IN ('SYS', 'SYSTEM')";
if (table != null) {
if (table.indexOf('%') != -1) {
query = query + " AND TBNAME LIKE " + table;
} else {
query = query + " AND TBNAME = " + table;
}
}
if (creator != null) {
if (creator.indexOf('%') != -1) {
query = query + " AND TBCREATOR LIKE " + creator;
} else {
query = query + " AND TBCREATOR = " + creator;
}
}
return session.executeSelectingCall(new org.eclipse.persistence.queries.SQLCall(query));
}
/**
* INTERNAL:
* Used for sp calls.
*/
@Override
public String getProcedureCallHeader() {
return "CALL ";
}
/**
* INTERNAL:
* Used for pessimistic locking in DB2.
* Without the "WITH RS" the lock is not held.
*/
// public String getSelectForUpdateString() { return " FOR UPDATE"; }
@Override
public String getSelectForUpdateString() {
return " FOR READ ONLY WITH RS USE AND KEEP UPDATE LOCKS";
//return " FOR READ ONLY WITH RR";
//return " FOR READ ONLY WITH RS";
//return " FOR UPDATE WITH RS";
}
/**
* INTERNAL:
* Used for stored procedure defs.
*/
@Override
public String getProcedureEndString() {
return "END";
}
/**
* Used for stored procedure defs.
*/
@Override
public String getProcedureBeginString() {
return "BEGIN";
}
/**
* INTERNAL:
* Used for stored procedure defs.
*/
@Override
public String getProcedureAsString() {
return "";
}
/**
* Obtain the platform specific argument string
*/
@Override
public String getProcedureArgument(String name, Object parameter, ParameterType parameterType, StoredProcedureCall call, AbstractSession session) {
if (name != null && shouldPrintStoredProcedureArgumentNameInCall()) {
return getProcedureArgumentString() + name + " => " + "?";
}
return "?";
}
/**
* INTERNAL:
* This is required in the construction of the stored procedures with output
* parameters.
*/
@Override
public boolean shouldPrintOutputTokenAtStart() {
return true;
}
/**
* Used to determine if the platform should perform partial parameter binding or not
* Enabled for DB2 and DB2 for zOS to add support for partial binding
*/
@Override
public boolean shouldBindPartialParameters() {
return this.shouldBindPartialParameters;
}
/**
* INTERNAL:
* This method returns the query to select the timestamp from the server for
* DB2.
*/
@Override
public ValueReadQuery getTimestampQuery() {
if (timestampQuery == null) {
timestampQuery = new ValueReadQuery();
timestampQuery.setSQLString("SELECT CURRENT TIMESTAMP FROM SYSIBM.SYSDUMMY1");
timestampQuery.setAllowNativeSQLQuery(true);
}
return timestampQuery;
}
/**
* INTERNAL:
* Initialize any platform-specific operators
*/
@Override
protected void initializePlatformOperators() {
super.initializePlatformOperators();
addOperator(ExpressionOperator.simpleFunction(ExpressionOperator.ToUpperCase, "UCASE"));
addOperator(ExpressionOperator.simpleFunction(ExpressionOperator.ToLowerCase, "LCASE"));
addOperator(count());
addOperator(max());
addOperator(min());
addOperator(concatOperator());
addOperator(caseOperator());
addOperator(caseConditionOperator());
addOperator(distinct());
addOperator(ExpressionOperator.simpleTwoArgumentFunction(ExpressionOperator.Instring, "Locate"));
// CR#2811076 some missing DB2 functions added.
addOperator(ExpressionOperator.simpleFunction(ExpressionOperator.ToNumber, "DECIMAL"));
addOperator(ExpressionOperator.simpleFunction(ExpressionOperator.ToChar, "CHAR"));
addOperator(ExpressionOperator.simpleFunction(ExpressionOperator.DateToString, "CHAR"));
addOperator(ExpressionOperator.simpleFunction(ExpressionOperator.ToDate, "DATE"));
addOperator(ascendingOperator());
addOperator(descendingOperator());
addOperator(trim2());
addOperator(ltrim2Operator());
addOperator(rtrim2Operator());
addOperator(lengthOperator());
addOperator(nullifOperator());
addOperator(coalesceOperator());
}
/**
* Create an ExpressionOperator that disables all parameter binding
*/
protected static ExpressionOperator disableAllBindingExpression() {
return new ExpressionOperator() {
@Override
public void printDuo(Expression first, Expression second, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printDuo(first, second, printer);
return;
}
if(first.isParameterExpression()) {
((ParameterExpression) first).setCanBind(false);
} else if(first.isConstantExpression()) {
((ConstantExpression) first).setCanBind(false);
}
if(second.isParameterExpression()) {
((ParameterExpression) second).setCanBind(false);
} else if(second.isConstantExpression()) {
((ConstantExpression) second).setCanBind(false);
}
super.printDuo(first, second, printer);
}
@Override
public void printCollection(List<Expression> items, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printCollection(items, printer);
return;
}
// Initialize argumentIndices
if (this.argumentIndices == null) {
this.argumentIndices = new int[items.size()];
for (int i = 0; i < this.argumentIndices.length; i++){
this.argumentIndices[i] = i;
}
}
for(Expression item : items) {
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(false);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(false);
}
}
super.printCollection(items, printer);
}
@Override
public void printJavaDuo(Expression first, Expression second, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaDuo(first, second, printer);
return;
}
if(first.isParameterExpression()) {
((ParameterExpression) first).setCanBind(false);
} else if(first.isConstantExpression()) {
((ConstantExpression) first).setCanBind(false);
}
if(second.isParameterExpression()) {
((ParameterExpression) second).setCanBind(false);
} else if(second.isConstantExpression()) {
((ConstantExpression) second).setCanBind(false);
}
super.printJavaDuo(first, second, printer);
}
@Override
public void printJavaCollection(Vector<Expression> items, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaCollection(items, printer);
return;
}
for(Expression item : items) {
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(false);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(false);
}
}
super.printJavaCollection(items, printer);
}
};
}
/**
* Create an ExpressionOperator that requires at least 1 typed argument
*/
protected static ExpressionOperator disableAtLeast1BindingExpression() {
return new ExpressionOperator() {
@Override
public void printDuo(Expression first, Expression second, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printDuo(first, second, printer);
return;
}
boolean firstBound = true;
if(second != null) {
boolean secondBound = true;
// If both are parameters and/or constants, we need to determine which should be bound
if(first.isValueExpression() && second.isValueExpression()) {
if(printer.getPlatform().shouldBindLiterals()) {
// If literal binding is enabled, we should make sure parameters are favored
if(first.isConstantExpression() && second.isParameterExpression()) {
firstBound = false;
} else {
secondBound = false;
}
} else {
// Otherwise, we default to favor the first argument
if(first.isParameterExpression() && second.isParameterExpression()) {
secondBound = false;
}
}
}
if(second.isParameterExpression()) {
((ParameterExpression) second).setCanBind(secondBound);
} else if(second.isConstantExpression()) {
((ConstantExpression) second).setCanBind(secondBound);
}
}
if(first.isParameterExpression()) {
((ParameterExpression) first).setCanBind(firstBound);
} else if(first.isConstantExpression()) {
((ConstantExpression) first).setCanBind(firstBound);
}
super.printDuo(first, second, printer);
}
@Override
public void printCollection(List<Expression> items, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printCollection(items, printer);
return;
}
// Initialize argumentIndices
if (this.argumentIndices == null) {
this.argumentIndices = new int[items.size()];
for (int i = 0; i < this.argumentIndices.length; i++){
this.argumentIndices[i] = i;
}
}
boolean allBind = true;
for (int i = 0; i < items.size(); i++) {
final int index = this.argumentIndices[i];
Expression item = items.get(index);
boolean shouldBind = true;
// If the item isn't a Constant/Parameter, this will suffice and the rest should bind
if(!item.isValueExpression()) {
allBind = false;
}
if(allBind) {
if(printer.getPlatform().shouldBindLiterals()) {
if((i == (this.argumentIndices.length - 1))) {
// The last parameter has to be disabled
shouldBind = allBind = false;
}
} else {
if(item.isConstantExpression()) {
// The first literal has to be disabled
shouldBind = allBind = false;
} else if((i == (this.argumentIndices.length - 1)) && item.isParameterExpression()) {
// The last parameter has to be disabled
shouldBind = allBind = false;
}
}
}
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(shouldBind);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(shouldBind);
}
}
super.printCollection(items, printer);
}
@Override
public void printJavaDuo(Expression first, Expression second, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaDuo(first, second, printer);
return;
}
boolean firstBound = true;
if(second != null) {
boolean secondBound = true;
// If both are parameters and/or constants, we need to determine which should be bound
if(first.isValueExpression() && second.isValueExpression()) {
if(printer.getPlatform().shouldBindLiterals()) {
// If literal binding is enabled, we should make sure parameters are favored
if(first.isConstantExpression() && second.isParameterExpression()) {
firstBound = false;
} else {
secondBound = false;
}
} else {
// Otherwise, we default to favor the first argument
if(first.isParameterExpression() && second.isParameterExpression()) {
secondBound = false;
}
}
}
if(second.isParameterExpression()) {
((ParameterExpression) second).setCanBind(secondBound);
} else if(second.isConstantExpression()) {
((ConstantExpression) second).setCanBind(secondBound);
}
}
if(first.isParameterExpression()) {
((ParameterExpression) first).setCanBind(firstBound);
} else if(first.isConstantExpression()) {
((ConstantExpression) first).setCanBind(firstBound);
}
super.printJavaDuo(first, second, printer);
}
@Override
public void printJavaCollection(Vector<Expression> items, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaCollection(items, printer);
return;
}
boolean allBind = true;
for (int i = 0; i < items.size(); i++) {
Expression item = items.get(i);
boolean shouldBind = true;
// If the item isn't a Constant/Parameter, this will suffice and the rest should bind
if(!item.isValueExpression()) {
allBind = false;
}
if(allBind) {
if(printer.getPlatform().shouldBindLiterals()) {
if((i == (items.size() - 1))) {
// The last parameter has to be disabled
shouldBind = allBind = false;
}
} else {
if(item.isConstantExpression()) {
// The first literal has to be disabled
shouldBind = allBind = false;
} else if((i == (items.size() - 1)) && item.isParameterExpression()) {
// The last parameter has to be disabled
shouldBind = allBind = false;
}
}
}
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(shouldBind);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(shouldBind);
}
}
super.printJavaCollection(items, printer);
}
};
}
/**
* Disable binding support.
* <p>
* With binding enabled, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X34: There is a ? parameter in the select list. This is not allowed.</pre>
*/
protected ExpressionOperator ascendingOperator() {
ExpressionOperator operator = disableAllBindingExpression();
ExpressionOperator.ascending().copyTo(operator);
return operator;
}
/**
* Disable binding support.
* <p>
* With binding enabled, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X34: There is a ? parameter in the select list. This is not allowed.</pre>
*/
protected ExpressionOperator descendingOperator() {
ExpressionOperator operator = disableAllBindingExpression();
ExpressionOperator.descending().copyTo(operator);
return operator;
}
/**
* INTERNAL:
* The concat operator is of the form .... VARCHAR ( <operand1> ||
* <operand2> )
*/
protected ExpressionOperator concatOperator() {
ExpressionOperator operator = new ExpressionOperator();
operator.setType(ExpressionOperator.FunctionOperator);
operator.setSelector(ExpressionOperator.Concat);
Vector v = new Vector(5);
v.add("VARCHAR(");
v.add(" || ");
v.add(")");
operator.printsAs(v);
operator.bePrefix();
operator.setNodeClass(ClassConstants.FunctionExpression_Class);
return operator;
}
/**
* Disable binding support.
* <p>
* With binding enabled, DB2 will throw an error:
* <pre>Db2 cannot determine how to implicitly cast the arguments between string and
* numeric data types. DB2 SQL Error: SQLCODE=-245, SQLSTATE=428F5</pre>
* <p>
* With binding enabled, DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X36: The 'COUNT' operator is not allowed to take a ? parameter as an operand.</pre>
*/
protected ExpressionOperator count() {
ExpressionOperator operator = disableAllBindingExpression();
ExpressionOperator.count().copyTo(operator);
return operator;
}
/**
* Disable binding support.
* <p>
* With binding enabled, DB2 will throw an error:
* <pre>Db2 cannot determine how to implicitly cast the arguments between string and
* numeric data types. DB2 SQL Error: SQLCODE=-245, SQLSTATE=428F5</pre>
* <p>
* With binding enabled, DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X36: The 'MAX' operator is not allowed to take a ? parameter as an operand.</pre>
*/
protected ExpressionOperator max() {
ExpressionOperator operator = disableAllBindingExpression();
ExpressionOperator.maximum().copyTo(operator);
return operator;
}
/**
* Disable binding support.
* <p>
* With binding enabled, DB2 will throw an error:
* <pre>Db2 cannot determine how to implicitly cast the arguments between string and
* numeric data types. DB2 SQL Error: SQLCODE=-245, SQLSTATE=428F5</pre>
* <p>
* With binding enabled, DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X36: The 'MIN' operator is not allowed to take a ? parameter as an operand.</pre>
*/
protected ExpressionOperator min() {
ExpressionOperator operator = disableAllBindingExpression();
ExpressionOperator.minimum().copyTo(operator);
return operator;
}
/**
* Disable binding support.
* <p>
* With binding enabled, DB2 will throw an error:
* <pre>Db2 cannot determine how to implicitly cast the arguments between string and
* numeric data types. DB2 SQL Error: SQLCODE=-245, SQLSTATE=428F5</pre>
* <p>
* With binding enabled, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X34: There is a ? parameter in the select list. This is not allowed.</pre>
*/
protected ExpressionOperator distinct() {
ExpressionOperator operator = disableAllBindingExpression();
ExpressionOperator.distinct().copyTo(operator);
return operator;
}
/**
* DB2 does not allow untyped parameter binding for the THEN & ELSE 'result-expressions' of CASE expressions
* <p>
* With binding enabled, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <b>Examples of places where parameter markers cannot be used:</b>
* <ul>
* <li>In a result-expression in any CASE expression when all the other result-expressions are either NULL or untyped parameter markers
* </ul>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X87: At least one result expression (THEN or ELSE) of the CASE expression must have a known type.
*/
protected ExpressionOperator caseOperator() {
ListExpressionOperator operator = new ListExpressionOperator() {
@Override
public void printCollection(List<Expression> items, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printCollection(items, printer);
return;
}
// First, calculate all argument binding positions
int i = 0;
int numberOfItems = items.size();
boolean[] argumentBinding = new boolean[numberOfItems + 1];
// Enabled for CASE operator
argumentBinding[i] = true;
i++;
// Enabled for WHEN, but not for THEN
boolean[] separatorsBinding = new boolean[]{true, false};
// Disable for ELSE, but not for END
boolean[] terminationStringsBinding = new boolean[]{false, true};
while (i < numberOfItems - (terminationStringsBinding.length - 1)) {
for (int j = 0; j < separatorsBinding.length; j++) {
argumentBinding[i] = separatorsBinding[j];
i++;
}
}
while (i <= numberOfItems) {
for (int j = 0; j < terminationStringsBinding.length; j++) {
argumentBinding[i] = terminationStringsBinding[j];
i++;
}
}
// Initialize argumentIndices
if (this.argumentIndices == null) {
this.argumentIndices = new int[items.size()];
for (int k = 0; k < this.argumentIndices.length; k++){
this.argumentIndices[k] = k;
}
}
for (int j = 0; j < items.size(); j++) {
final int index = this.argumentIndices[j];
Expression item = items.get(index);
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(argumentBinding[index]);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(argumentBinding[index]);
}
}
super.printCollection(items, printer);
}
@Override
public void printJavaCollection(Vector<Expression> items, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaCollection(items, printer);
return;
}
// First, calculate all argument binding positions
int i = 0;
int numberOfItems = items.size();
boolean[] argumentBinding = new boolean[numberOfItems + 1];
// Enabled for CASE operator
argumentBinding[i] = true;
i++;
// Enabled for WHEN, but not for THEN
boolean[] separatorsBinding = new boolean[]{true, false};
// Disable for ELSE, but not for END
boolean[] terminationStringsBinding = new boolean[]{false, true};
while (i < numberOfItems - (terminationStringsBinding.length - 1)) {
for (int j = 0; j < separatorsBinding.length; j++) {
argumentBinding[i] = separatorsBinding[j];
i++;
}
}
while (i <= numberOfItems) {
for (int j = 0; j < terminationStringsBinding.length; j++) {
argumentBinding[i] = terminationStringsBinding[j];
i++;
}
}
for (int j = 0; j < items.size(); j++) {
Expression item = items.get(j);
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(argumentBinding[j]);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(argumentBinding[j]);
}
}
super.printJavaCollection(items, printer);
}
};
ExpressionOperator.caseStatement().copyTo(operator);
return operator;
}
/**
* DB2 does not allow untyped parameter binding for the THEN & ELSE 'result-expressions' of CASE expressions
* <p>
* With binding enabled, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <b>Examples of places where parameter markers cannot be used:</b>
* <ul>
* <li>In a result-expression in any CASE expression when all the other result-expressions are either NULL or untyped parameter markers
* </ul>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X87: At least one result expression (THEN or ELSE) of the CASE expression must have a known type.
*/
protected ExpressionOperator caseConditionOperator() {
ListExpressionOperator operator = new ListExpressionOperator() {
@Override
public void printCollection(List<Expression> items, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printCollection(items, printer);
return;
}
// First, calculate all argument binding positions
int i = 0;
int numberOfItems = items.size();
boolean[] argumentBinding = new boolean[numberOfItems + 1];
// Enabled for CASE WHEN operator
argumentBinding[i] = true;
i++;
// Disabled for THEN operator
argumentBinding[i] = false;
i++;
// Enabled for WHEN, but not for THEN
boolean[] separatorsBinding = new boolean[]{true, false};
// Disable for ELSE, but not for END
boolean[] terminationStringsBinding = new boolean[]{false, true};
while (i < numberOfItems - (terminationStringsBinding.length - 1)) {
for (int j = 0; j < separatorsBinding.length; j++) {
argumentBinding[i] = separatorsBinding[j];
i++;
}
}
while (i <= numberOfItems) {
for (int j = 0; j < terminationStringsBinding.length; j++) {
argumentBinding[i] = terminationStringsBinding[j];
i++;
}
}
// Initialize argumentIndices
if (this.argumentIndices == null) {
this.argumentIndices = new int[items.size()];
for (int k = 0; k < this.argumentIndices.length; k++){
this.argumentIndices[k] = k;
}
}
for (int j = 0; j < items.size(); j++) {
final int index = this.argumentIndices[j];
Expression item = items.get(index);
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(argumentBinding[index]);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(argumentBinding[index]);
}
}
super.printCollection(items, printer);
}
@Override
public void printJavaCollection(Vector<Expression> items, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaCollection(items, printer);
return;
}
// First, calculate all argument binding positions
int i = 0;
int numberOfItems = items.size();
boolean[] argumentBinding = new boolean[numberOfItems + 1];
// Enabled for CASE WHEN operator
argumentBinding[i] = true;
i++;
// Disabled for THEN operator
argumentBinding[i] = false;
i++;
// Enabled for WHEN, but not for THEN
boolean[] separatorsBinding = new boolean[]{true, false};
// Disable for ELSE, but not for END
boolean[] terminationStringsBinding = new boolean[]{false, true};
while (i < numberOfItems - (terminationStringsBinding.length - 1)) {
for (int j = 0; j < separatorsBinding.length; j++) {
argumentBinding[i] = separatorsBinding[j];
i++;
}
}
while (i <= numberOfItems) {
for (int j = 0; j < terminationStringsBinding.length; j++) {
argumentBinding[i] = terminationStringsBinding[j];
i++;
}
}
for (int j = 0; j < items.size(); j++) {
Expression item = items.get(j);
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(argumentBinding[j]);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(argumentBinding[j]);
}
}
super.printJavaCollection(items, printer);
}
};
ExpressionOperator.caseConditionStatement().copyTo(operator);
return operator;
}
/**
* Disable binding support.
* <p>
* With binding enabled, DB2 will throw an error:
* <pre>Db2 cannot determine how to implicitly cast the arguments between string and
* numeric data types. DB2 SQL Error: SQLCODE=-245, SQLSTATE=428F5</pre>
* <p>
* With binding enabled, DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X36: The 'length' operator is not allowed to take a ? parameter as an operand.</pre>
*/
protected ExpressionOperator lengthOperator() {
ExpressionOperator operator = disableAllBindingExpression();
ExpressionOperator.length().copyTo(operator);
return operator;
}
/**
* DB2 requires that at least one argument be a known type
* <p>
* With binding enabled, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42X35: It is not allowed for both operands of '=' to be ? parameters.</pre>
*/
protected ExpressionOperator nullifOperator() {
ExpressionOperator operator = disableAtLeast1BindingExpression();
ExpressionOperator.nullIf().copyTo(operator);
return operator;
}
/**
* DB2 requires that at least one argument be a known type
* <p>
* With binding enabled, DB2 will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* With binding enabled, DB2 z/OS will throw an error:
* <pre>The statement string specified as the object of a PREPARE contains a
* predicate or expression where parameter markers have been used as operands of
* the same operator for example: ? > ?. DB2 SQL Error: SQLCODE=-417, SQLSTATE=42609</pre>
* <p>
* With binding enabled, Derby will throw an error:
* <pre>ERROR 42610: All the arguments to the COALESCE/VALUE function cannot be parameters. The function needs at least one argument that is not a parameter.</pre>
*/
protected ExpressionOperator coalesceOperator() {
ListExpressionOperator operator = new ListExpressionOperator() {
@Override
public void printCollection(List<Expression> items, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printCollection(items, printer);
return;
}
// Initialize argumentIndices
if (this.argumentIndices == null) {
this.argumentIndices = new int[items.size()];
for (int i = 0; i < this.argumentIndices.length; i++){
this.argumentIndices[i] = i;
}
}
boolean allBind = true;
for (int i = 0; i < items.size(); i++) {
final int index = this.argumentIndices[i];
Expression item = items.get(index);
boolean shouldBind = true;
// If the item isn't a Constant/Parameter, this will suffice and the rest should bind
if(!item.isValueExpression()) {
allBind = false;
}
if(allBind) {
if(printer.getPlatform().shouldBindLiterals()) {
if((i == (this.argumentIndices.length - 1))) {
// The last parameter has to be disabled
shouldBind = allBind = false;
}
} else {
if(item.isConstantExpression()) {
// The first literal has to be disabled
shouldBind = allBind = false;
} else if((i == (this.argumentIndices.length - 1)) && item.isParameterExpression()) {
// The last parameter has to be disabled
shouldBind = allBind = false;
}
}
}
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(shouldBind);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(shouldBind);
}
}
super.printCollection(items, printer);
}
@Override
public void printJavaCollection(Vector<Expression> items, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaCollection(items, printer);
return;
}
boolean allBind = true;
for (int i = 0; i < items.size(); i++) {
Expression item = items.get(i);
boolean shouldBind = true;
// If the item isn't a Constant/Parameter, this will suffice and the rest should bind
if(!item.isValueExpression()) {
allBind = false;
}
if(allBind) {
if(printer.getPlatform().shouldBindLiterals()) {
if((i == (items.size() - 1))) {
// The last parameter has to be disabled
shouldBind = allBind = false;
}
} else {
if(item.isConstantExpression()) {
// The first literal has to be disabled
shouldBind = allBind = false;
} else if((i == (items.size() - 1)) && item.isParameterExpression()) {
// The last parameter has to be disabled
shouldBind = allBind = false;
}
}
}
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(shouldBind);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(shouldBind);
}
}
super.printJavaCollection(items, printer);
}
};
ExpressionOperator.coalesce().copyTo(operator);
return operator;
}
/**
* DB2 does not support untyped parameter binding for <operand2>
* <p>
* With binding enabled, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
*/
protected ExpressionOperator trim2() {
ExpressionOperator operator = new ExpressionOperator(){
@Override
public void printCollection(List<Expression> items, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printCollection(items, printer);
return;
}
// Initialize argumentIndices
if (this.argumentIndices == null) {
this.argumentIndices = new int[items.size()];
for (int i = 0; i < this.argumentIndices.length; i++){
this.argumentIndices[i] = i;
}
}
for (int i = 0; i < items.size(); i++) {
final int index = this.argumentIndices[i];
Expression item = items.get(index);
// Disable the first item, which should be <operand2> for this operator
if(i == 0) {
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(false);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(false);
}
}
}
super.printCollection(items, printer);
}
@Override
public void printJavaCollection(Vector<Expression> items, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaCollection(items, printer);
return;
}
for (int i = 0; i < items.size(); i++) {
Expression item = items.get(i);
// Disable the first item, which should be <operand2> for this operator
if(i == 0) {
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(false);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(false);
}
}
}
super.printJavaCollection(items, printer);
}
};
operator.setType(ExpressionOperator.FunctionOperator);
operator.setSelector(ExpressionOperator.Trim2);
Vector v = org.eclipse.persistence.internal.helper.NonSynchronizedVector.newInstance(5);
v.add("TRIM(");
v.add(" FROM ");
v.add(")");
operator.printsAs(v);
operator.bePrefix();
// Bug 573094
int[] indices = { 1, 0 };
operator.setArgumentIndices(indices);
operator.setNodeClass(ClassConstants.FunctionExpression_Class);
return operator;
}
/**
* DB2 does not support untyped parameter binding for <operand2>
* <p>
* With binding enabled, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
*/
protected ExpressionOperator ltrim2Operator() {
ExpressionOperator operator = new ExpressionOperator(){
@Override
public void printCollection(List<Expression> items, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printCollection(items, printer);
return;
}
// Initialize argumentIndices
if (this.argumentIndices == null) {
this.argumentIndices = new int[items.size()];
for (int i = 0; i < this.argumentIndices.length; i++){
this.argumentIndices[i] = i;
}
}
for (int i = 0; i < items.size(); i++) {
final int index = this.argumentIndices[i];
Expression item = items.get(index);
// Disable the first item, which should be <operand2> for this operator
if(i == 0) {
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(false);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(false);
}
}
}
super.printCollection(items, printer);
}
@Override
public void printJavaCollection(Vector<Expression> items, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaCollection(items, printer);
return;
}
for (int i = 0; i < items.size(); i++) {
Expression item = items.get(i);
// Disable the first item, which should be <operand2> for this operator
if(i == 0) {
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(false);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(false);
}
}
}
super.printJavaCollection(items, printer);
}
};
operator.setType(ExpressionOperator.FunctionOperator);
operator.setSelector(ExpressionOperator.LeftTrim2);
Vector v = new Vector(5);
v.add("TRIM(LEADING ");
v.add(" FROM ");
v.add(")");
operator.printsAs(v);
operator.bePrefix();
// Bug 573094
int[] indices = { 1, 0 };
operator.setArgumentIndices(indices);
operator.setNodeClass(ClassConstants.FunctionExpression_Class);
return operator;
}
/**
* DB2 does not support untyped parameter binding for <operand2>
* <p>
* With binding enabled, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
*/
protected ExpressionOperator rtrim2Operator() {
ExpressionOperator operator = new ExpressionOperator(){
@Override
public void printCollection(List<Expression> items, ExpressionSQLPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printCollection(items, printer);
return;
}
// Initialize argumentIndices
if (this.argumentIndices == null) {
this.argumentIndices = new int[items.size()];
for (int i = 0; i < this.argumentIndices.length; i++){
this.argumentIndices[i] = i;
}
}
for (int i = 0; i < items.size(); i++) {
final int index = this.argumentIndices[i];
Expression item = items.get(index);
// Disable the first item, which should be <operand2> for this operator
if(i == 0) {
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(false);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(false);
}
}
}
super.printCollection(items, printer);
}
@Override
public void printJavaCollection(Vector<Expression> items, ExpressionJavaPrinter printer) {
if(!printer.getPlatform().shouldBindPartialParameters()) {
super.printJavaCollection(items, printer);
return;
}
for (int i = 0; i < items.size(); i++) {
Expression item = items.get(i);
// Disable the first item, which should be <operand2> for this operator
if(i == 0) {
if(item.isParameterExpression()) {
((ParameterExpression) item).setCanBind(false);
} else if(item.isConstantExpression()) {
((ConstantExpression) item).setCanBind(false);
}
}
}
super.printJavaCollection(items, printer);
}
};
operator.setType(ExpressionOperator.FunctionOperator);
operator.setSelector(ExpressionOperator.RightTrim2);
Vector v = new Vector(5);
v.add("TRIM(TRAILING ");
v.add(" FROM ");
v.add(")");
operator.printsAs(v);
operator.bePrefix();
// Bug 573094
int[] indices = { 1, 0 };
operator.setArgumentIndices(indices);
operator.setNodeClass(ClassConstants.FunctionExpression_Class);
return operator;
}
@Override
public boolean isDB2() {
return true;
}
/**
* INTERNAL:
* Builds a table of maximum numeric values keyed on java class. This is
* used for type testing but might also be useful to end users attempting to
* sanitize values.
* <p>
* <b>NOTE</b>: BigInteger {@literal &} BigDecimal maximums are dependent upon their
* precision {@literal &} Scale
*/
@Override
public Hashtable maximumNumericValues() {
Hashtable values = new Hashtable();
values.put(Integer.class, Integer.valueOf(Integer.MAX_VALUE));
values.put(Long.class, Long.valueOf(Integer.MAX_VALUE));
values.put(Float.class, Float.valueOf(123456789));
values.put(Double.class, Double.valueOf(Float.MAX_VALUE));
values.put(Short.class, Short.valueOf(Short.MAX_VALUE));
values.put(Byte.class, Byte.valueOf(Byte.MAX_VALUE));
values.put(java.math.BigInteger.class, new java.math.BigInteger("999999999999999"));
values.put(java.math.BigDecimal.class, new java.math.BigDecimal("0.999999999999999"));
return values;
}
/**
* INTERNAL:
* Builds a table of minimum numeric values keyed on java class. This is
* used for type testing but might also be useful to end users attempting to
* sanitize values.
* <p>
* <b>NOTE</b>: BigInteger {@literal &} BigDecimal minimums are dependent upon their
* precision {@literal &} Scale
*/
@Override
public Hashtable minimumNumericValues() {
Hashtable values = new Hashtable();
values.put(Integer.class, Integer.valueOf(Integer.MIN_VALUE));
values.put(Long.class, Long.valueOf(Integer.MIN_VALUE));
values.put(Float.class, Float.valueOf(-123456789));
values.put(Double.class, Double.valueOf(Float.MIN_VALUE));
values.put(Short.class, Short.valueOf(Short.MIN_VALUE));
values.put(Byte.class, Byte.valueOf(Byte.MIN_VALUE));
values.put(java.math.BigInteger.class, new java.math.BigInteger("-999999999999999"));
values.put(java.math.BigDecimal.class, new java.math.BigDecimal("-0.999999999999999"));
return values;
}
/**
* INTERNAL:
* Allow for the platform to ignore exceptions. This is required for DB2
* which throws no-data modified as an exception.
*/
@Override
public boolean shouldIgnoreException(SQLException exception) {
if (exception.getMessage().equals("No data found") || exception.getMessage().equals("No row was found for FETCH, UPDATE or DELETE; or the result of a query is an empty table")
|| (exception.getErrorCode() == 100)) {
return true;
}
return super.shouldIgnoreException(exception);
}
/**
* INTERNAL:
* JDBC defines and outer join syntax, many drivers do not support this. So
* we normally avoid it.
*/
@Override
public boolean shouldUseJDBCOuterJoinSyntax() {
return false;
}
/**
* INTERNAL: Build the identity query for native sequencing.
*/
@Override
public ValueReadQuery buildSelectQueryForIdentity() {
ValueReadQuery selectQuery = new ValueReadQuery();
StringWriter writer = new StringWriter();
writer.write("SELECT IDENTITY_VAL_LOCAL() FROM SYSIBM.SYSDUMMY1");
selectQuery.setSQLString(writer.toString());
return selectQuery;
}
/**
* INTERNAL: Append the receiver's field 'identity' constraint clause to a
* writer.
* Used by table creation with sequencing.
*/
@Override
public void printFieldIdentityClause(Writer writer) throws ValidationException {
try {
writer.write(" GENERATED ALWAYS AS IDENTITY");
} catch (IOException ioException) {
throw ValidationException.fileError(ioException);
}
}
@Override
protected void printFieldTypeSize(Writer writer, FieldDefinition field, FieldTypeDefinition ftd) throws IOException {
super.printFieldTypeSize(writer, field, ftd);
String suffix = ftd.getTypesuffix();
if (suffix != null) {
writer.append(" " + suffix);
}
}
/**
* INTERNAL: Indicates whether the platform supports identity. DB2 does
* through AS IDENTITY field types.
* This is used by sequencing.
*/
@Override
public boolean supportsIdentity() {
return true;
}
/**
* INTERNAL: DB2 supports temp tables.
* This is used by UpdateAllQuerys.
*/
@Override
public boolean supportsGlobalTempTables() {
return true;
}
/**
* INTERNAL: DB2 temp table syntax.
* This is used by UpdateAllQuerys.
*/
@Override
protected String getCreateTempTableSqlPrefix() {
return "DECLARE GLOBAL TEMPORARY TABLE ";
}
/**
* INTERNAL: DB2 temp table syntax.
* This is used by UpdateAllQuerys.
*/
@Override
public DatabaseTable getTempTableForTable(DatabaseTable table) {
DatabaseTable tempTable = super.getTempTableForTable(table);
tempTable.setTableQualifier("session");
return tempTable;
}
/**
* INTERNAL: DB2 temp table syntax.
* This is used by UpdateAllQuerys.
*/
@Override
protected String getCreateTempTableSqlSuffix() {
return " ON COMMIT DELETE ROWS NOT LOGGED";
}
/**
* INTERNAL: DB2 allows LIKE to be used to create temp tables, which avoids having to know the types.
* This is used by UpdateAllQuerys.
*/
@Override
protected String getCreateTempTableSqlBodyForTable(DatabaseTable table) {
return " LIKE " + table.getQualifiedNameDelimited(this);
}
/**
* INTERNAL: DB2 does not support NOWAIT.
*/
@Override
public String getNoWaitString() {
return "";
}
/**
* INTERNAL: DB2 has issues with binding with temp table queries.
* This is used by UpdateAllQuerys.
*/
@Override
public boolean dontBindUpdateAllQueryUsingTempTables() {
return true;
}
/**
* INTERNAL: DB2 does not allow NULL in select clause.
* This is used by UpdateAllQuerys.
*/
@Override
public boolean isNullAllowedInSelectClause() {
return false;
}
/**
* INTERNAL
* DB2 has some issues with using parameters on certain functions and relations.
* This allows statements to disable binding only in these cases.
* If users set casting on, then casting is used instead of dynamic SQL.
*/
@Override
public boolean isDynamicSQLRequiredForFunctions() {
if(shouldForceBindAllParameters()) {
return false;
}
return !isCastRequired();
}
/**
* INTERNAL: DB2 does not allow stand alone, untyped parameter markers in select clause.
* @see org.eclipse.persistence.internal.expressions.ConstantExpression#writeFields(ExpressionSQLPrinter, List, SQLSelectStatement)
* @see org.eclipse.persistence.internal.expressions.ParameterExpression#writeFields(ExpressionSQLPrinter, List, SQLSelectStatement)
*/
@Override
public boolean allowBindingForSelectClause() {
return false;
}
/**
* INTERNAL:
* DB2 requires casting on certain operations, such as the CONCAT function,
* and parameterized queries of the form, ":param = :param". This method
* will write CAST operation to parameters if the type is known.
* This is not used by default, only if isCastRequired is set to true,
* by default dynamic SQL is used to avoid the issue in only the required cases.
*/
@Override
public void writeParameterMarker(Writer writer, ParameterExpression parameter, AbstractRecord record, DatabaseCall call) throws IOException {
String paramaterMarker = "?";
Object type = parameter.getType();
// Update-all query requires casting of null parameter values in select into.
if ((type != null) && (this.isCastRequired || ((call.getQuery() != null) && call.getQuery().isUpdateAllQuery()))) {
BasicTypeHelperImpl typeHelper = BasicTypeHelperImpl.getInstance();
String castType = null;
if (typeHelper.isBooleanType(type) || typeHelper.isByteType(type) || typeHelper.isShortType(type)) {
castType = "SMALLINT";
} else if (typeHelper.isIntType(type)) {
castType = "INTEGER";
} else if (typeHelper.isLongType(type)) {
castType = "BIGINT";
} else if (typeHelper.isFloatType(type)) {
castType = "REAL";
} else if (typeHelper.isDoubleType(type)) {
castType = "DOUBLE";
} else if (typeHelper.isStringType(type)) {
castType = "VARCHAR(" + getCastSizeForVarcharParameter() + ")";
} else if (typeHelper.isCharacterType(type)) {
castType = "CHAR";
}
if (castType != null) {
paramaterMarker = "CAST (? AS " + castType + ")";
}
}
writer.write(paramaterMarker);
}
/**
* INTERNAL:
* DB2 does not seem to allow FOR UPDATE on queries with multiple tables.
* This is only used by testing to exclude these tests.
*/
@Override
public boolean supportsLockingQueriesWithMultipleTables() {
return false;
}
/**
* INTERNAL: DB2 added SEQUENCE support as of (I believe) v8.
*/
@Override
public ValueReadQuery buildSelectQueryForSequenceObject(String qualifiedSeqName, Integer size) {
return new ValueReadQuery("VALUES(NEXT VALUE FOR " + qualifiedSeqName + ")");
}
/**
* INTERNAL: DB2 added SEQUENCE support as of (I believe) v8.
*/
@Override
public boolean supportsSequenceObjects() {
return true;
}
/**
* DB2 disables single parameter usage in ORDER BY clause.
* <p>
* If a parameter marker is used, DB2 & DB2 z/OS will throw an error:
* <pre>The statement cannot be executed because a parameter marker has been used
* in an invalid way. DB2 SQL Error: SQLCODE=-418, SQLSTATE=42610</pre>
* <p>
* If a parameter marker is used, Derby will throw an error:
* <pre>ERROR 42X34: There is a ? parameter in the select list. This is not allowed.</pre>
*/
@Override
public boolean supportsOrderByParameters() {
return false;
}
/**
* INTERNAL: DB2 added SEQUENCE support as of (I believe) v8.
*/
@Override
public boolean isAlterSequenceObjectSupported() {
return true;
}
@Override
public boolean shouldPrintForUpdateClause() {
return false;
}
/**
* INTERNAL:
* Print the SQL representation of the statement on a stream, storing the fields
* in the DatabaseCall. This implementation works MaxRows and FirstResult into the SQL using
* DB2's ROWNUMBER() OVER() to filter values if shouldUseRownumFiltering is true.
*/
@Override
public void printSQLSelectStatement(DatabaseCall call, ExpressionSQLPrinter printer, SQLSelectStatement statement){
int max = 0;
int firstRow = 0;
if (statement.getQuery()!=null){
max = statement.getQuery().getMaxRows();
firstRow = statement.getQuery().getFirstResult();
}
if ( !(this.shouldUseRownumFiltering()) || ( !(max>0) && !(firstRow>0) ) ){
super.printSQLSelectStatement(call, printer, statement);
statement.appendForUpdateClause(printer);
return;
} else if ( max > 0 ){
statement.setUseUniqueFieldAliases(true);
printer.printString("SELECT * FROM (SELECT * FROM (SELECT ");
printer.printString("EL_TEMP.*, ROWNUMBER() OVER() AS EL_ROWNM FROM (");
call.setFields(statement.printSQL(printer));
printer.printString(") AS EL_TEMP) AS EL_TEMP2 WHERE EL_ROWNM <= ");
printer.printParameter(DatabaseCall.MAXROW_FIELD);
printer.printString(") AS EL_TEMP3 WHERE EL_ROWNM > ");
printer.printParameter(DatabaseCall.FIRSTRESULT_FIELD);
// If we have a ForUpdate clause, it must be on the outermost query
statement.appendForUpdateClause(printer);
} else {// firstRow>0
statement.setUseUniqueFieldAliases(true);
printer.printString("SELECT * FROM (SELECT EL_TEMP.*, ROWNUMBER() OVER() AS EL_ROWNM FROM (");
call.setFields(statement.printSQL(printer));
printer.printString(") AS EL_TEMP) AS EL_TEMP2 WHERE EL_ROWNM > ");
printer.printParameter(DatabaseCall.FIRSTRESULT_FIELD);
statement.appendForUpdateClause(printer);
}
call.setIgnoreFirstRowSetting(true);
call.setIgnoreMaxResultsSetting(true);
}
}
|