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
|
/*
*
* Derby - Class SURTest
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*/
package org.apache.derbyTesting.functionTests.tests.jdbcapi;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Statement;
import java.util.Iterator;
import junit.extensions.TestSetup;
import junit.framework.Test;
import org.apache.derbyTesting.functionTests.util.SQLStateConstants;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
* Tests for variants of scrollable updatable resultsets.
*
*/
public class SURTest extends SURBaseTest {
/** Creates a new instance of SURTest */
public SURTest(String name) {
super(name);
}
/**
* Test that you get a warning when specifying a query which is not
* updatable and concurrency mode CONCUR_UPDATABLE.
* In this case, the query contains an "order by"
*/
public void testConcurrencyModeWarning1()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1 order by a");
SQLWarning warn = rs.getWarnings();
assertEquals("Expected resultset to be read only",
ResultSet.CONCUR_READ_ONLY,
rs.getConcurrency());
assertWarning(warn, QUERY_NOT_QUALIFIED_FOR_UPDATABLE_RESULTSET);
scrollForward(rs);
rs.close();
s.close();
}
/**
* Test that you get a warning when specifying a query which is not
* updatable and concurrency mode CONCUR_UPDATABLE.
* In this case, the query contains a join.
*/
public void testConcurrencyModeWarning2()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery
("select * from t1 as table1,t1 as table2 where " +
"table1.a=table2.a");
SQLWarning warn = rs.getWarnings();
assertEquals("Expected resultset to be read only",
ResultSet.CONCUR_READ_ONLY,
rs.getConcurrency());
assertWarning(warn, QUERY_NOT_QUALIFIED_FOR_UPDATABLE_RESULTSET);
scrollForward(rs);
rs.close();
s.close();
}
/**
* Test that you get an exception when specifying update clause
* "FOR UPDATE"
* along with a query which is not updatable.
* In this case, the query contains and order by.
*/
public void testForUpdateException1()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
try {
String queryString =
"select * from t1 order by a for update";
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery(queryString);
assertTrue("Expected query '" + queryString +
"' to fail", false);
} catch (SQLException e) {
assertEquals("Unexpected SQLState",
FOR_UPDATE_NOT_PERMITTED_SQL_STATE,
e.getSQLState());
}
rollback();
s.close();
}
/**
* Test that you get an exception when specifying update clause
* "FOR UPDATE" along with a query which is not updatable.
* In this case, the query contains a join
*/
public void testForUpdateException2()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
try {
String queryString =
"select * from t1 as table1,t1 as table2" +
" where table1.a=table2.a for update";
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery(queryString);
assertTrue("Expected query '" + queryString + "' to fail",
false);
} catch (SQLException e) {
assertEquals("Unexpected SQLState",
FOR_UPDATE_NOT_PERMITTED_SQL_STATE,
e.getSQLState());
}
rollback();
s.close();
}
/**
* Test that you can scroll forward and read all records in the
* ResultSet
*/
public void testForwardOnlyReadOnly1()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_READ_ONLY);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
scrollForward(rs);
rs.close();
s.close();
}
/**
* Test that you get an exception if you try to update a ResultSet
* with concurrency mode CONCUR_READ_ONLY.
*/
public void testFailOnUpdateOfReadOnlyResultSet1()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_READ_ONLY);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.next();
assertFailOnUpdate(rs);
s.close();
}
/**
* Test that you get an exception when attempting to update a
* ResultSet which has been downgraded to a read only ResultSet.
*/
public void testFailOnUpdateOfReadOnlyResultSet2()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1 order by id");
rs.next();
assertFailOnUpdate(rs);
s.close();
}
/**
* Test that you get an exception when attempting to update a
* ResultSet which has been downgraded to a read only ResultSet.
*/
public void testFailOnUpdateOfReadOnlyResultSet3()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs =
s.executeQuery("select * from t1 for read only");
rs.next();
assertFailOnUpdate(rs);
s.close();
}
/**
* Test that you get an exception when attempting to update a
* ResultSet which has been downgraded to a read only ResultSet.
*/
public void testFailOnUpdateOfReadOnlyResultSet4()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery
("select * from t1 where a=1 for read only");
rs.next();
verifyTuple(rs);
assertFailOnUpdate(rs);
s.close();
}
/**
* Test that you get an exception if you try to update a ResultSet
* with concurrency mode CONCUR_READ_ONLY.
*/
public void testFailOnUpdateOfReadOnlyResultSet5()
throws SQLException
{
Statement s = createStatement(ResultSet.
TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_READ_ONLY);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery
("select * from t1 where a=1 for read only");
rs.next();
verifyTuple(rs);
assertFailOnUpdate(rs);
s.close();
}
/**
* Test that when doing an update immediately after
* a commit, the update fails, because the cursor has been
* postioned between the current row and the next row.
* The test uses a FORWARD_ONLY resultset and ResultSet update methods
* when doing the update.
*/
public void testCursorStateAfterCommit1()
throws SQLException
{
testCursorStateAfterCommit(false, ResultSet.TYPE_FORWARD_ONLY);
}
/**
* Test that when doing an update immediately after
* a commit, the update fails, because the cursor has been
* postioned between the current row and the next row.
* The test uses a SCROLL_INSENSITIVE resultset and ResultSet update methods
* when doing the update.
*/
public void testCursorStateAfterCommit2()
throws SQLException
{
testCursorStateAfterCommit(false, ResultSet.TYPE_SCROLL_INSENSITIVE);
}
/**
* Test that when doing an update immediately after
* a commit, the update fails, because the cursor has been
* postioned between the current row and the next row.
* The test uses a FORWARD_ONLY resultset and positioned updates.
*/
public void testCursorStateAfterCommit3()
throws SQLException
{
testCursorStateAfterCommit(true, ResultSet.TYPE_FORWARD_ONLY);
}
/**
* Test that when doing an update immediately after
* a commit, the update fails, because the cursor has been
* postioned between the current row and the next row.
* The test uses a SCROLL_INSENSITIVE resultset and positioned updates.
*/
public void testCursorStateAfterCommit4()
throws SQLException
{
testCursorStateAfterCommit(true, ResultSet.TYPE_SCROLL_INSENSITIVE);
}
/**
* Test that when doing an update immediately after
* a commit, the update fails, because the cursor has been
* postioned between the current row and the next row.
* If the cursor gets repositioned, it allows an update.
* @param positioned true to use positioned update, otherwise use
* ResultSet.updateRow()
* @param resultSetType type of result set (as in ResultSet.getType())
*/
private void testCursorStateAfterCommit(final boolean positioned,
final int resultSetType)
throws SQLException
{
final Statement s = createStatement(resultSetType,
ResultSet.CONCUR_UPDATABLE);
final String cursorName = getNextCursorName();
s.setCursorName(cursorName);
final ResultSet rs = s.executeQuery("select a from t1");
final int recordToUpdate = 5;
if (resultSetType==ResultSet.TYPE_FORWARD_ONLY) {
for (int i = 0; i < recordToUpdate; i++) {
rs.next();
}
} else {
rs.absolute(recordToUpdate);
}
commit();
PreparedStatement ps =
prepareStatement("update t1 set a=? where current of " +
cursorName);
// First: check that we get an exception on update without repositioning:
try {
if (positioned) {
ps.setInt(1, -1);
ps.executeUpdate();
fail("Expected exception to be thrown on positioned update " +
"since cursor is not positioned");
} else {
rs.updateInt(1, -1);
rs.updateRow();
fail("Expected exception to be thrown on updateRow() since " +
"cursor is not positioned");
}
} catch (SQLException e) {
assertSQLState("Unexpected SQLState when updating row after commit",
SQLStateConstants.INVALID_CURSOR_STATE_NO_SUBCLASS,
e);
}
// Check that we after a repositioning can update:
if (resultSetType==ResultSet.TYPE_FORWARD_ONLY) {
rs.next();
} else {
rs.relative(0);
}
if (positioned) {
ps.setInt(1, -1);
ps.executeUpdate();
} else {
rs.updateInt(1, -1);
rs.updateRow();
}
s.close();
ps.close();
}
/**
* Test that you can correctly run multiple updateXXX() + updateRow()
* combined with cancelRowUpdates().
*/
public void testMultiUpdateRow1()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.absolute(5);
final int oldCol2 = rs.getInt(2);
final int newCol2 = -2222;
final int oldCol3 = rs.getInt(3);
final int newCol3 = -3333;
rs.updateInt(2, newCol2);
assertEquals("Expected the resultset to be updated after updateInt",
newCol2, rs.getInt(2));
rs.cancelRowUpdates();
assertEquals("Expected updateXXX to have no effect after cancelRowUpdated",
oldCol2, rs.getInt(2));
rs.updateInt(2, newCol2);
assertEquals("Expected the resultset to be updated after updateInt",
newCol2, rs.getInt(2));
assertTrue("Expected rs.rowUpdated() to be false before updateRow",
!rs.rowUpdated());
rs.updateRow();
assertTrue("Expected rs.rowUpdated() to be true after updateRow",
rs.rowUpdated());
assertEquals("Expected the resultset detect the updates of previous " +
"updateRow", newCol2, rs.getInt(2));
rs.updateInt(3, newCol3);
assertEquals("Expected the resultset to be updated after updateInt",
newCol3, rs.getInt(3));
assertEquals("Expected the resultset detect the updates of previous " +
"updateRow", newCol2, rs.getInt(2));
rs.cancelRowUpdates();
assertEquals("Expected updateXXX to have no effect after " +
"cancelRowUpdated", oldCol3, rs.getInt(3));
assertEquals("Expected the resultset detect the updates of previous " +
"updateRow after cancelRowUpdated", newCol2, rs.getInt(2));
rs.updateInt(3, newCol3);
rs.updateRow();
assertEquals("Expected the resultset to be updated after updateInt",
newCol3, rs.getInt(3));
rs.cancelRowUpdates();
assertEquals("Expected the resultset detect the updates of previous" +
"updateRow after cancelRowUpdates", newCol2, rs.getInt(2));
assertEquals("Expected the resultset detect the updates of previous" +
"updateRow after cancelRowUpdates", newCol3, rs.getInt(3));
assertTrue("Expected rs.rowUpdated() to be true after " +
"updateRow and cancelRowUpdates", rs.rowUpdated());
rs.close();
s.close();
}
/**
* Test that you can correctly run multiple updateNull() + updateRow()
* combined with cancelRowUpdates().
*/
public void testMultiUpdateRow2()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.absolute(5);
final int oldCol2 = rs.getInt(2);
final int oldCol3 = rs.getInt(3);
rs.updateNull(2);
assertEquals("Expected the resultset to be updated after updateNull",
0, rs.getInt(2));
assertTrue("Expected wasNull to be true after updateNull", rs.wasNull());
rs.cancelRowUpdates();
assertEquals("Expected updateXXX to have no effect after cancelRowUpdated",
oldCol2, rs.getInt(2));
rs.updateNull(2);
assertEquals("Expected the resultset to be updated after updateNull",
0, rs.getInt(2));
assertTrue("Expected wasNull to be true after updateNull", rs.wasNull());
assertTrue("Expected rs.rowUpdated() to be false before updateRow",
!rs.rowUpdated());
rs.updateRow();
assertTrue("Expected rs.rowUpdated() to be true after updateRow",
rs.rowUpdated());
assertEquals("Expected the resultset detect the updates of previous " +
"updateRow", 0, rs.getInt(2));
rs.updateNull(3);
assertEquals("Expected the resultset to be updated after updateNull",
0, rs.getInt(3));
assertTrue("Expected wasNull to be true after updateNull", rs.wasNull());
assertEquals("Expected the resultset detect the updates of previous " +
"updateRow", 0, rs.getInt(2));
rs.cancelRowUpdates();
assertEquals("Expected updateXXX to have no effect after " +
"cancelRowUpdated", oldCol3, rs.getInt(3));
assertEquals("Expected the resultset detect the updates of previous " +
"updateRow after cancelRowUpdated", 0, rs.getInt(2));
rs.updateNull(3);
rs.updateRow();
assertEquals("Expected the resultset to be updated after updateNull",
0, rs.getInt(3));
rs.cancelRowUpdates();
assertEquals("Expected the resultset detect the updates of previous" +
"updateRow after cancelRowUpdates", 0, rs.getInt(2));
assertEquals("Expected the resultset detect the updates of previous" +
"updateRow after cancelRowUpdates", 0, rs.getInt(3));
assertTrue("Expected rs.rowUpdated() to be true after " +
"updateRow and cancelRowUpdates", rs.rowUpdated());
rs.close();
s.close();
}
/**
* Test that you get cursor operation conflict warning if updating
* a row which has been deleted from the table.
*/
public void testCursorOperationConflictWarning1()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.next();
createStatement().executeUpdate("delete from t1 where id=" +
rs.getString("ID"));
final int newValue = -3333;
final int oldValue = rs.getInt(2);
rs.updateInt(2, newValue);
rs.updateRow();
SQLWarning warn = rs.getWarnings();
assertWarning(warn, CURSOR_OPERATION_CONFLICT);
assertEquals("Did not expect the resultset to be updated", oldValue, rs.getInt(2));
assertTrue("Expected rs.rowDeleted() to be false", !rs.rowDeleted());
assertTrue("Expected rs.rowUpdated() to be false", !rs.rowUpdated());
rs.clearWarnings();
rs.deleteRow();
warn = rs.getWarnings();
assertWarning(warn, CURSOR_OPERATION_CONFLICT);
rs.relative(0);
assertTrue("Expected rs.rowUpdated() to be false", !rs.rowUpdated());
assertTrue("Expected rs.rowDeleted() to be false", !rs.rowDeleted());
assertEquals("Did not expect the resultset to be updated", oldValue, rs.getInt(2));
rs.close();
s.close();
}
/**
* Test that you get cursor operation conflict warning if updating
* a row which has been deleted from the table, now using
* positioned updates / deletes.
*/
public void testCursorOperationConflictWarning2()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.next();
createStatement().executeUpdate ("delete from t1 where id=" +
rs.getString("ID"));
final int newValue = -3333;
final int oldValue = rs.getInt(2);
Statement s3 = createStatement();
int updateCount = s3.executeUpdate
("update t1 set A=" + newValue +
" where current of " + rs.getCursorName());
rs.relative(0);
SQLWarning warn = s3.getWarnings();
assertWarning(warn, CURSOR_OPERATION_CONFLICT);
assertTrue("Expected rs.rowUpdated() to be false", !rs.rowUpdated());
assertTrue("Expected rs.rowDeleted() to be false", !rs.rowDeleted());
assertEquals("Did not expect the resultset to be updated", oldValue, rs.getInt(2));
assertEquals("Expected update count to be 0", 0, updateCount);
Statement s4 = createStatement();
updateCount = s4.executeUpdate("delete from t1 where current of " +
rs.getCursorName());
rs.relative(0);
warn = s4.getWarnings();
assertWarning(warn, CURSOR_OPERATION_CONFLICT);
assertTrue("Expected rs.rowUpdated() to be false", !rs.rowUpdated());
assertTrue("Expected rs.rowDeleted() to be false", !rs.rowDeleted());
assertEquals("Did not expect the resultset to be updated", oldValue, rs.getInt(2));
assertEquals("Expected update count to be 0", 0, updateCount);
rs.close();
s.close();
s3.close();
s4.close();
}
/**
* Test that you can scroll forward and update indexed records in
* the ResultSet (not using FOR UPDATE)
*/
public void testIndexedUpdateCursor1()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1 where a=1");
assertTrue("Expected to get a tuple on rs.next()", rs.next());
verifyTuple(rs);
updateTuple(rs);
s.close();
}
/**
* Test that you can scroll forward and update indexed records
* in the ResultSet (using FOR UPDATE).
*/
public void testIndexedUpdateCursor2()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs =
s.executeQuery("select * from t1 where a=1 for update");
assertTrue("Expected to get a tuple on rs.next()", rs.next());
verifyTuple(rs);
updateTuple(rs);
s.close();
}
/**
* Tests that it is possible to move using positioning methods after
* moveToInsertRow and that it is possible to delete a row after
* positioning back from insertRow. Also tests that it is possible to
* insert a row when positioned on insert row, that it is not possible
* to update or delete a row from insertRow and that it also is not possible
* to insert a row without being on insert row.
*/
public void testInsertRowWithScrollCursor() throws SQLException {
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
int currentPosition, lastRow;
s.setCursorName(getNextCursorName());
ResultSet rs =
s.executeQuery("select * from t1");
rs.last();
lastRow = rs.getRow();
rs.beforeFirst();
rs.next();
// Test that it is possible to move to next row from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.next();
assertEquals("CurrentPosition should be " + (currentPosition + 1),
rs.getRow(), currentPosition + 1);
// should be able to delete the row
rs.deleteRow();
// Test that it is possible to move using relative from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.relative(2);
assertEquals("CurrentPosition should be " + (currentPosition + 2),
rs.getRow(), currentPosition + 2);
// should be able to delete the row
rs.deleteRow();
// Test that it is possible to move using absolute from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.absolute(6);
assertEquals("CurrentPosition should be 6", rs.getRow(), 6);
// should be able to delete the row
rs.deleteRow();
// Test that it is possible to move to previous row from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.previous();
assertEquals("CurrentPosition should be " + (currentPosition - 1),
rs.getRow(), currentPosition - 1);
// should be able to delete the row
rs.deleteRow();
// Test that it is possible to move to first row from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.first();
assertEquals("CurrentPosition should be 1", rs.getRow(), 1);
assertTrue("isFirst() should return true", rs.isFirst());
// should be able to delete the row
rs.deleteRow();
// Test that it is possible to move to last row from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.last();
assertEquals("CurrentPosition should be " + lastRow,
rs.getRow(), lastRow);
assertTrue("isLast() should return true", rs.isLast());
// should be able to delete the row
rs.deleteRow();
// Test that it is possible to move beforeFirst from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.beforeFirst();
assertTrue("isBeforeFirst() should return true", rs.isBeforeFirst());
rs.next();
assertEquals("CurrentPosition should be 1", rs.getRow(), 1);
assertTrue("isFirst() should return true", rs.isFirst());
// Test that it is possible to move afterLast from insertRow
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.afterLast();
assertTrue("isAfterLast() should return true", rs.isAfterLast());
rs.previous();
assertEquals("CurrentPosition should be " + lastRow,
rs.getRow(), lastRow);
assertTrue("isLast() should return true", rs.isLast());
// Test that it is possible to insert a row and move back to current row
rs.previous();
currentPosition = rs.getRow();
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 1000);
rs.insertRow();
rs.moveToCurrentRow();
assertEquals("CurrentPosition should be " + currentPosition,
rs.getRow(), currentPosition);
try {
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 2000);
rs.updateRow();
} catch (SQLException se) {
assertEquals("Expected exception",
se.getSQLState().substring(0, 5),
INVALID_CURSOR_STATE_NO_CURRENT_ROW);
}
try {
rs.moveToInsertRow();
rs.updateInt(1, currentPosition + 2000);
rs.deleteRow();
} catch (SQLException se) {
assertEquals("Expected exception",
se.getSQLState().substring(0, 5),
INVALID_CURSOR_STATE_NO_CURRENT_ROW);
}
try {
rs.moveToCurrentRow();
rs.updateInt(1, currentPosition + 2000);
rs.insertRow();
} catch (SQLException se) {
assertEquals("Expected exception",
se.getSQLState().substring(0, 5),
CURSOR_NOT_POSITIONED_ON_INSERT_ROW);
}
rs.close();
s.close();
}
/**
* Test that you can scroll forward and update indexed records
* in the scrollable ResultSet (not using FOR UPDATE).
*/
public void
testIndexedScrollInsensitiveUpdateCursorWithoutForUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs =
s.executeQuery("select * from t1 where a=1 or a=2");
rs.next();
rs.next();
rs.previous();
verifyTuple(rs);
updateTuple(rs);
s.close();
}
/**
* Test that you can scroll forward and update indexed records
* in the scrollable ResultSet (using FOR UPDATE).
*/
public void
testIndexedScrollInsensitiveUpdateCursorWithForUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery
("select * from t1 where a=1 or a=2 for update");
rs.next();
rs.next();
rs.previous();
verifyTuple(rs);
updateTuple(rs);
rs.close();
s.close();
}
/**
* Test update of a keyed record using scrollable updatable
* resultset.
*/
public void testPrimaryKeyUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.last();
rs.next();
while(rs.previous()) {
// Update the key of every second row.
int key = rs.getInt(1);
if (key%2==0) {
int newKey = -key;
rs.updateInt(1, newKey);
rs.updateRow();
}
}
PreparedStatement ps = prepareStatement
("select * from t1 where id=?");
for (int i=0; i<recordCount; i++) {
int key = (i%2==0) ? -i : i;
ps.setInt(1, key);
ResultSet rs2 = ps.executeQuery();
assertTrue("Expected query to have 1 row", rs2.next());
println("T1: Read Tuple:(" + rs2.getInt(1) + "," +
rs2.getInt(2) + "," +
rs2.getInt(3) + ")");
assertEquals("Unexpected value of id", key, rs2.getInt(1));
assertTrue("Did not expect more than 1 row, " +
"however rs2.next returned another row",
!rs2.next());
}
s.close();
ps.close();
}
/**
* Test update of a keyed record using other statement
* object.
*/
public void testOtherPrimaryKeyUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.last();
int primaryKey = rs.getInt(1);
PreparedStatement ps = prepareStatement
("update t1 set id = ? where id= ?");
ps.setInt(1, -primaryKey);
ps.setInt(2, primaryKey);
assertEquals("Expected one row to be updated", 1,
ps.executeUpdate());
rs.updateInt(2, -555);
rs.updateInt(3, -777);
rs.updateRow();
PreparedStatement ps2 = prepareStatement
("select * from t1 where id=?");
ps2.setInt(1, -primaryKey);
ResultSet rs2 = ps2.executeQuery();
assertTrue("Expected query to have 1 row", rs2.next());
println("T1: Read Tuple:(" + rs2.getInt(1) + "," +
rs2.getInt(2) + "," +
rs2.getInt(3) + ")");
assertEquals("Expected a=-555", -555, rs2.getInt(2));
assertEquals("Expected b=-777", -777, rs2.getInt(3));
assertTrue("Did not expect more than 1 row, however " +
"rs2.next() returned another row", !rs2.next());
s.close();
ps.close();
ps2.close();
}
/**
* Test update of a keyed record using other both the
* scrollable updatable resultset and using another statement
* object.
*/
public void testOtherAndOwnPrimaryKeyUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.last();
int primaryKey = rs.getInt(1);
PreparedStatement ps = prepareStatement
("update t1 set id = ? where id= ?");
ps.setInt(1, -primaryKey);
ps.setInt(2, primaryKey);
assertEquals("Expected one row to be updated", 1,
ps.executeUpdate());
rs.updateInt(1, primaryKey*10);
rs.updateInt(2, -555);
rs.updateInt(3, -777);
rs.updateRow();
PreparedStatement ps2 =
prepareStatement("select * from t1 where id=?");
ps2.setInt(1, primaryKey*10);
ResultSet rs2 = ps2.executeQuery();
assertTrue("Expected query to have 1 row", rs2.next());
println("T1: Read Tuple:(" + rs2.getInt(1) + "," +
rs2.getInt(2) + "," +
rs2.getInt(3) + ")");
assertEquals("Expected a=-555", -555, rs2.getInt(2));
assertEquals("Expected b=-777", -777, rs2.getInt(3));
assertTrue("Did not expect more than 1 row, however " +
"rs2.next() returned another row", !rs2.next());
s.close();
ps.close();
ps2.close();
}
/**
* Update multiple keyed records using scrollable updatable resultset
*/
public void testMultipleKeyUpdates()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.last();
int primaryKey = rs.getInt(1);
PreparedStatement ps = s.getConnection().prepareStatement
("update t1 set id = ? where id= ?");
ps.setInt(1, -primaryKey);
ps.setInt(2, primaryKey);
assertEquals("Expected one row to be updated", 1,
ps.executeUpdate());
ps.close();
rs.updateInt(1, primaryKey*10);
rs.updateInt(2, -555);
rs.updateInt(3, -777);
rs.updateRow();
rs.first();
rs.last();
for (int i=0; i<10; i++) {
rs.first();
rs.last();
rs.next();
rs.previous();
rs.updateInt(1, primaryKey*10 +i);
rs.updateInt(2, (-555 -i));
rs.updateInt(3, (-777 -i));
rs.updateRow();
}
rs.close();
s.close();
}
/**
* Test update indexed records using scrollable updatable resultset
*/
public void testSecondaryIndexKeyUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.last();
rs.next();
int newKey = 0;
while(rs.previous()) {
// Update the secondary key of all rows
rs.updateInt(2, newKey--);
rs.updateRow();
}
PreparedStatement ps = prepareStatement
("select * from t1 where a=?");
for (int i=0; i<recordCount; i++) {
int key = -i;
ps.setInt(1, key);
ResultSet rs2 = ps.executeQuery();
assertTrue("Expected query to have 1 row", rs2.next());
println("T1: Read Tuple:(" + rs2.getInt(1) + "," +
rs2.getInt(2) + "," +
rs2.getInt(3) + ")");
assertEquals("Unexpected value of id", key, rs2.getInt(2));
assertTrue("Did not expect more than 1 row, " +
"however rs2.next returned another row",
!rs2.next());
}
s.close();
ps.close();
}
/**
* Test update indexed records using other statement object
* and using resultset.
*/
public void testOtherSecondaryKeyUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
rs.last();
int indexedKey = rs.getInt(2);
PreparedStatement ps =
prepareStatement("update t1 set a = ? where a= ?");
ps.setInt(1, -indexedKey);
ps.setInt(2, indexedKey);
assertEquals("Expected one row to be updated", 1,
ps.executeUpdate());
rs.updateInt(1, -555);
rs.updateInt(3, -777);
rs.updateRow();
PreparedStatement ps2 =
prepareStatement("select * from t1 where a=?");
ps2.setInt(1, -indexedKey);
ResultSet rs2 = ps2.executeQuery();
assertTrue("Expected query to have 1 row", rs2.next());
println("T1: Read Tuple:(" + rs2.getInt(1) + "," +
rs2.getInt(2) + "," +
rs2.getInt(3) + ")");
assertEquals("Expected id=-555", -555, rs2.getInt(1));
assertEquals("Expected b=-777", -777, rs2.getInt(3));
assertTrue("Did not expect more than 1 row, however " +
"rs2.next() returned another row", !rs2.next());
s.close();
ps.close();
ps2.close();
}
/**
* Test scrolling in a read only resultset
*/
public void testScrollInsensitiveReadOnly1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_READ_ONLY);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
scrollForward(rs);
scrollBackward(rs);
rs.close();
s.close();
}
/**
* Test updating a forward only resultset (with FOR UPDATE)
*/
public void testForwardOnlyConcurUpdatableWithForUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1 for update");
scrollForwardAndUpdate(rs);
rs.close();
s.close();
}
/**
* Test updating a forward only resultset (without FOR UPDATE)
*/
public void testForwardOnlyConcurUpdatableWithoutForUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
scrollForwardAndUpdate(rs);
rs.close();
s.close();
}
/**
* Test updating a forward only resultset (without FOR UPDATE)
* and using positioned update
*/
public void testPositionedUpdateWithoutForUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
s.setCursorName("MYCURSOR");
ResultSet rs = s.executeQuery("select * from t1");
scrollForwardAndUpdatePositioned(rs);
rs.close();
s.close();
}
/**
* Test updating a forward only resultset (with FOR UPDATE)
* and using positioned update
*/
public void testPositionedUpdateWithForUpdate1()
throws SQLException
{
Statement s = createStatement();
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1 for update");
scrollForwardAndUpdatePositioned(rs);
rs.close();
s.close();
}
/**
* Test positioned update of a scrollable resultset (with FOR UPDATE)
*/
public void testScrollablePositionedUpdateWithForUpdate1()
throws SQLException
{
Statement s = createStatement
(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_READ_ONLY);
s.setCursorName("MYCURSOR");
ResultSet rs = s.executeQuery("select * from t1 for update");
rs.next();
int pKey = rs.getInt(1);
rs.previous();
rs.next();
assertEquals("Expecting to be on the same row after previous() " +
"+ next() ", pKey, rs.getInt(1));
rs.next();
rs.previous();
assertEquals("Expecting to be on the same row after next() + " +
"previous()", pKey, rs.getInt(1));
final int previousA = rs.getInt(2);
final int previousB = rs.getInt(3);
println(rs.getCursorName());
PreparedStatement ps = prepareStatement
("update T1 set a=?,b=? where current of " + rs.getCursorName());
ps.setInt(1, 666);
ps.setInt(2, 777);
ps.executeUpdate();
rs.next();
rs.previous();
assertEquals("Expected to be on the same row after next() + previous()",
pKey, rs.getInt(1));
assertEquals("Expected row to be updated by own change, " +
" however did not get updated value for column a",
666, rs.getInt(2));
assertEquals("Expected row to be updated by own change, however did " +
"not get updated value for column b", 777, rs.getInt(3));
rs.close();
s.setCursorName(getNextCursorName());
rs = s.executeQuery("select * from t1 order by b");
while (rs.next()) {
if (rs.getInt(1)==pKey) {
assertEquals("Expected row with primary key = " + pKey +
" to be updated", 666, rs.getInt(2));
assertEquals("Expected row with primary key = " + pKey +
" to be updated", 777, rs.getInt(3));
} else {
println("Got tuple (" + rs.getInt(1) + "," + rs.getInt(2) +
"," + rs.getInt(3) + "," + rs.getString(4)+ ")");
}
}
s.close();
ps.close();
}
/**
* Test update of a scrollable resultset (with FOR UPDATE)
* Only scrolling forward
*/
public void testScrollInsensitiveConcurUpdatableWithForUpdate1()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1 for update");
scrollForwardAndUpdate(rs);
rs.close();
s.close();
}
/**
* Test update of a scrollable resultset (with FOR UPDATE)
* Scrolling forward and backward.
*/
public void testScrollInsensitiveConcurUpdatableWithForUpdate2()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
assertEquals("Invalid resultset concurrency on statement",
ResultSet.CONCUR_UPDATABLE, s.getResultSetConcurrency());
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1 for update");
assertEquals("Invalid resultset concurrency on resultset",
ResultSet.CONCUR_UPDATABLE, rs.getConcurrency());
scrollForward(rs);
scrollBackwardAndUpdate(rs);
rs.close();
s.close();
}
/**
* Test update of a scrollable resultset
* Scrolling forward and backward. Then open another
* resultset and verify the data.
*/
private void testScrollInsensistiveConurUpdatable3(ResultSet rs)
throws SQLException
{
while (rs.next()) {
}
while (rs.previous()) {
int a = rs.getInt(1);
int b = rs.getInt(2);
int id = b - 17 - a;
int newA = 1000;
int newB = id + newA + 17;
rs.updateInt(1, newA); // Set a to 1000
rs.updateInt(2, newB); // Set b to checksum value
rs.updateRow();
assertEquals("Expected a to be 1000", 1000, rs.getInt(1));
}
int count = 0;
while (rs.next()) {
int a = rs.getInt(1);
count++;
assertEquals("Incorrect row updated for row " + count, 1000, a);
}
assertEquals("Expected count to be the same as number of records",
recordCount, count);
while (rs.previous()) {
int a = rs.getInt(1);
count--;
assertEquals("Incorrect row updated for row " + count, 1000, a);
}
rs.close();
Statement s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_READ_ONLY);
s.setCursorName(getNextCursorName());
rs = s.executeQuery("select * from t1");
while (rs.next()) {
int id = rs.getInt(1);
int a = rs.getInt(2);
int b = rs.getInt(3);
println("Updated tuple:" + id + "," + a + "," + b);
}
s.close();
}
/**
* Test update of a scrollable resultset (with FOR UPDATE)
* Scrolling forward and backward. Then open another
* resultset and verify the data.
*/
public void testScrollInsensitiveConcurUpdatableWithForUpdate3()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select a,b from t1 for update");
testScrollInsensistiveConurUpdatable3(rs);
s.close();
}
/**
* Test update of a scrollable resultset (without FOR UPDATE)
* Scrolling forward only
*/
public void testScrollInsensitiveConcurUpdatableWithoutForUpdate1()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
scrollForwardAndUpdate(rs);
rs.close();
s.close();
}
/**
* Test update of a scrollable resultset (without FOR UPDATE)
* Scrolling forward and backward.
*/
public void testScrollInsensitiveConcurUpdatableWithoutForUpdate2()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select * from t1");
scrollForward(rs);
scrollBackwardAndUpdate(rs);
rs.close();
s.close();
}
/**
* Test update of a scrollable resultset (without FOR UPDATE)
* Scrolling forward and backward. Then open another
* resultset and verify the data.
*/
public void testScrollInsensitiveConcurUpdatableWithoutForUpdate3()
throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select a,b from t1");
testScrollInsensistiveConurUpdatable3(rs);
s.close();
}
/**
* DERBY-4198 "When using the FOR UPDATE OF clause with SUR
* (Scroll-insensive updatable result sets), the updateRow() method crashes"
*
* This bug revealed missing logic to handle the fact the the ExecRow
* passed down to ScrollInsensitiveResultSet.updateRow does not always
* contain all the rows of the basetable, cf. the logic of RowChangerImpl.
* When an explicit list of columns is given as in FOR UPDATE OF
* <column-list>, the ExecRow may contains a subset of the the base table
* columns and ScrollInsensitiveResultSet was not ready to handle that.
*
* Test some of the cases which went wrong before the fix.
*
*/
public void testForUpdateWithColumnList() throws SQLException {
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
// case a)
ResultSet rs = s.executeQuery("select c from t1 for update of c");
rs.next();
rs.updateString(1,"foobar");
rs.updateRow();
rs.next();
rs.previous();
assertEquals("foobar", rs.getString(1));
rs.close();
// case b)
rs = s.executeQuery("select id from t1 for update of id");
rs.next();
rs.updateInt(1,20);
rs.updateRow();
rs.next();
rs.previous();
assertEquals(20, rs.getInt(1));
rs.close();
// case c)
rs = s.executeQuery("select * from t1 for update of id");
rs.next();
rs.updateInt(1,20);
rs.updateRow();
rs.next();
rs.previous();
assertEquals(20, rs.getInt(1));
rs.close();
// case d)
rs = s.executeQuery("SELECT * from t1 for update of c");
rs.next();
int id = rs.getInt(1);
int a = rs.getInt(2);
int b = rs.getInt(3);
rs.updateString(4,"foobar");
rs.updateRow();
rs.next();
rs.previous();
assertEquals(id, rs.getInt(1));
assertEquals(a, rs.getInt(2));
assertEquals(b, rs.getInt(3));
assertEquals("foobar", rs.getString(4));
rs.close();
// case e)
rs = s.executeQuery("SELECT * from t1 for update of id,a,b,c");
rs.next();
rs.updateInt(1, -20);
rs.updateInt(2, 20);
rs.updateInt(3, 21);
rs.updateString(4,"foobar");
rs.updateRow();
rs.next();
rs.previous();
assertEquals(-20, rs.getInt(1));
assertEquals(20, rs.getInt(2));
assertEquals(21, rs.getInt(3));
assertEquals("foobar", rs.getString(4));
rs.close();
// case f)
rs = s.executeQuery("SELECT * from t1 for update of id, a,b,c");
rs.next();
rs.updateInt(1, 20);
rs.updateRow();
rs.next();
rs.previous();
assertEquals(20, rs.getInt(1));
rs.close();
// case h)
rs = s.executeQuery("SELECT id from t1 for update of id, c");
String cursorname = rs.getCursorName();
rs.next();
Statement s2 = createStatement();
s2.executeUpdate("update t1 set c='foobar' where current of " +
cursorname);
s2.close();
rs.next();
rs.previous();
rs.getInt(1); // gives error state 22018 before fix
rs.close();
// case i)
rs = s.executeQuery("SELECT id from t1 for update");
cursorname = rs.getCursorName();
rs.next();
s2 = createStatement();
s2.executeUpdate("update t1 set c='foobar' where current of " +
cursorname);
s2.close();
rs.next();
rs.previous();
rs.getInt(1); // ok before fix
rs.close();
// Odd cases: base row mentioned twice in rs, update 1st instance
rs = s.executeQuery("SELECT id,a,id from t1");
rs.next();
rs.updateInt(1, 20);
rs.updateRow();
rs.next();
rs.previous();
assertEquals(20, rs.getInt(1));
assertEquals(20, rs.getInt(3));
rs.close();
// Odd cases: base row mentioned twice in rs, update 2nd instance
// with explicit column list; fails, see DERBY-4226.
rs = s.executeQuery("SELECT id,a,id from t1 for update of id");
rs.next();
try {
rs.updateInt(3, 20);
fail("should fail");
} catch (SQLException e) {
String sqlState = usingEmbedded() ? "42X31" : "XJ124";
assertSQLState(sqlState, e);
}
rs.close();
// Odd cases: base row mentioned twice in rs, update 2nd instance
// without explicit column list; works
rs = s.executeQuery("SELECT id,a,id from t1 for update");
rs.next();
rs.updateInt(3, 20);
rs.updateRow();
assertEquals(20, rs.getInt(1));
assertEquals(20, rs.getInt(3));
rs.next();
rs.previous();
assertEquals(20, rs.getInt(1));
assertEquals(20, rs.getInt(3));
rs.close();
s.close();
}
/**
* Check that detectability methods throw the correct exception
* when called in an illegal row state, that is, somehow not
* positioned on a row. Minion of testDetectabilityExceptions.
*
* @param rs An open updatable result set.
* @param state A string describing the illegal state.
*/
private void checkDetectabilityCallsOutsideRow(ResultSet rs,
String state)
{
boolean b;
try {
b = rs.rowUpdated();
fail("rowUpdated while " + state +
" did not throw exception: " + b);
} catch (SQLException e) {
assertEquals(e.getSQLState(),
INVALID_CURSOR_STATE_NO_CURRENT_ROW);
}
try {
b = rs.rowDeleted();
fail("rowdeleted while " + state +
" did not throw exception: " + b);
} catch (SQLException e) {
assertEquals(e.getSQLState(),
INVALID_CURSOR_STATE_NO_CURRENT_ROW);
}
try {
b = rs.rowInserted();
fail("rowInserted while " + state +
" did not throw exception: " + b);
} catch (SQLException e) {
assertEquals(e.getSQLState(),
INVALID_CURSOR_STATE_NO_CURRENT_ROW);
}
}
/**
* Test that rowUpdated() and rowDeleted() methods both return true when
* the row has first been updated and then deleted using the updateRow()
* and deleteRow() methods.
*/
public void testRowUpdatedAndRowDeleted() throws SQLException {
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
s.setCursorName(getNextCursorName());
ResultSet rs = s.executeQuery("select a,b from t1");
rs.next();
rs.updateInt(1, rs.getInt(1) + 2 * recordCount);
rs.updateRow();
assertTrue("Expected rowUpdated() to return true", rs.rowUpdated());
rs.deleteRow();
rs.next();
rs.previous();
assertTrue("Expected rowUpdated() to return true", rs.rowUpdated());
assertTrue("Expected rowDeleted() to return true", rs.rowDeleted());
rs.next();
assertFalse("Expected rowUpdated() to return false", rs.rowUpdated());
assertFalse("Expected rowDeleted() to return false", rs.rowDeleted());
rs.previous();
assertTrue("Expected rowUpdated() to return true", rs.rowUpdated());
assertTrue("Expected rowDeleted() to return true", rs.rowDeleted());
rs.close();
s.close();
}
/**
* Test that the JDBC detectability calls throw correct exceptions when
* called in in wrong row states.
* This is done for both supported updatable result set types.
*/
public void testDetectabilityExceptions() throws SQLException
{
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
ResultSet rs = s.executeQuery("select * from t1");
checkDetectabilityCallsOutsideRow(rs, "before positioning");
rs.moveToInsertRow();
checkDetectabilityCallsOutsideRow(rs,
"on insertRow before positioning");
rs.next();
rs.moveToInsertRow();
checkDetectabilityCallsOutsideRow(rs, "on insertRow");
rs.moveToCurrentRow(); // needed until to DERBY-1322 is fixed
rs.beforeFirst();
checkDetectabilityCallsOutsideRow(rs, "on beforeFirst row");
rs.afterLast();
checkDetectabilityCallsOutsideRow(rs, "on afterLast row");
rs.first();
rs.deleteRow();
checkDetectabilityCallsOutsideRow(rs, "after deleteRow");
rs.last();
rs.deleteRow();
checkDetectabilityCallsOutsideRow(rs, "after deleteRow of last row");
rs.close();
s.close();
// Not strictly SUR, but fixed in same patch, so we test it here.
s = createStatement(ResultSet.TYPE_FORWARD_ONLY,
ResultSet.CONCUR_UPDATABLE);
rs = s.executeQuery("select * from t1");
checkDetectabilityCallsOutsideRow(rs, "before FO positioning");
rs.moveToInsertRow();
checkDetectabilityCallsOutsideRow(rs,
"on insertRow before FO positioning");
rs.next();
rs.moveToInsertRow();
checkDetectabilityCallsOutsideRow(rs, "on FO insertRow");
rs.next();
rs.updateInt(2, 666);
rs.updateRow();
checkDetectabilityCallsOutsideRow(rs, "after FO updateRow");
rs.next();
rs.deleteRow();
checkDetectabilityCallsOutsideRow(rs, "after FO deleteRow");
while (rs.next()) {};
checkDetectabilityCallsOutsideRow(rs, "after FO emptied out");
rs.close();
s.close();
}
/**
* DERBY-1481 - ResultSet.beforeFirst() gives protocol error on scrollable,
* updatable result sets that are downgraded to read-only
*
* Check that no exception is thrown when calling positioning methods on a
* result set that has been downgraded to read-only.
*
*/
public void testDowngradeToScrollReadOnly() throws SQLException {
Statement s = createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
ResultSet rs = s.executeQuery("select * from t1 order by b");
// check that the ResultSet was downgraded
assertWarning(rs.getWarnings(),
QUERY_NOT_QUALIFIED_FOR_UPDATABLE_RESULTSET);
// call positioning methods
rs.next();
rs.next();
rs.previous();
rs.relative(1);
rs.absolute(3);
rs.relative(-1);
rs.first();
rs.last();
rs.beforeFirst();
rs.afterLast();
// close result set and statement
rs.close();
s.close();
}
/**
* Get a cursor name. We use the same cursor name for all cursors.
*/
private final String getNextCursorName() {
return "MYCURSOR";
}
/**
* Run the base suite in embedded and client mode.
*/
public static Test suite() {
BaseTestSuite mainSuite = new BaseTestSuite("SURTest");
mainSuite.addTest(baseSuite("SURTest:embedded"));
mainSuite.addTest(
TestConfiguration.clientServerDecorator(baseSuite("SURTest:client")));
return mainSuite;
}
/**
* The suite contains all testcases in this class running on different
* data models
*/
private static Test baseSuite(String name) {
BaseTestSuite mainSuite = new BaseTestSuite(name);
// Iterate over all data models and decorate the tests:
for (Iterator i = SURDataModelSetup.SURDataModel.values().iterator();
i.hasNext();) {
SURDataModelSetup.SURDataModel model =
(SURDataModelSetup.SURDataModel) i.next();
BaseTestSuite suite = new BaseTestSuite(SURTest.class);
TestSetup decorator = new SURDataModelSetup
(suite, model);
mainSuite.addTest(decorator);
}
return mainSuite;
}
}
|