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
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.jdbcapi.AutoGenJDBC30Test
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.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Savepoint;
import java.sql.Statement;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.JDBC;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
* Tests the JDBC 3.0 ability to establish a result set of auto-generated keys.
* <p>
* Converts the old jdbcapi/autoGeneratedJdbc30.java test to JUnit.
* The old harness test number is preserved in the comment for each fixture.
*/
public class AutoGenJDBC30Test extends BaseJDBCTestCase {
/**
* Routines that should be created before the tests are run.
*/
private static final String[] ROUTINES = {
// Used by testInsertNoAutoGenExecuteSQLfunc
"CREATE FUNCTION MMWNI() RETURNS VARCHAR(20) " +
"READS SQL DATA LANGUAGE JAVA PARAMETER STYLE JAVA EXTERNAL NAME '" +
AutoGenJDBC30Test.class.getName() + ".MyMethodWithNoInsert'",
// Used by testInsertAutoGenExecuteSQLfunc
"CREATE FUNCTION AddMe(P1 INT) RETURNS INT " +
"READS SQL DATA LANGUAGE JAVA PARAMETER STYLE JAVA EXTERNAL NAME '" +
AutoGenJDBC30Test.class.getName() + ".addMe'",
};
/**
* Tables that should be created before the tests are run.
* The first element in each row is the name of the table and the second
* element is the SQL text that creates it.
*/
private static final String[][] TABLES = {
{ "t11_AutoGen",
"create table t11_AutoGen (c11 int, " +
"c12 int generated always as identity (increment by 1))" },
{ "t31_AutoGen",
"create table t31_AutoGen (c31 int, " +
"c32 int generated always as identity (increment by 1), " +
"c33 int default 2)" },
{ "t21_noAutoGen",
"create table t21_noAutoGen (c21 int not null unique, c22 char(5))" },
{ "t21_feed_table",
"create table t21_feed_table (c21 int not null unique, c22 char(5))"},
};
/**
* Creates a new AutoGenJDBC30Test instance.
*
* @param name name of the test
*/
public AutoGenJDBC30Test(String name) {
super(name);
}
/**
* Implements suite() to run in embedded and client configurations.
*/
public static Test suite() {
BaseTestSuite suite = new BaseTestSuite("AutoGenJDBC30Test");
suite.addTest(baseSuite("AutoGenJDBC30Test:embedded"));
suite.addTest(TestConfiguration.clientServerDecorator(
baseSuite("AutoGenJDBC30Test:client")));
return suite;
}
/**
* Tests are only run if JDBC 3.0 available, and database objects get
* created only once for the suite run.
*
* @param name name of the test
*/
private static Test baseSuite(String name) {
BaseTestSuite suite = new BaseTestSuite(name);
if (!JDBC.vmSupportsJDBC3()) {
// empty suite
return suite;
}
suite.addTestSuite(AutoGenJDBC30Test.class);
// Create database objects only once for entire test run
return new CleanDatabaseTestSetup(suite)
{
/**
* Creates the database objects used in the test cases.
* @throws SQLException
*/
protected void decorateSQL(Statement s) throws SQLException
{
for (int i = 0; i < ROUTINES.length; i++) {
s.execute(ROUTINES[i]);
}
for (int i = 0; i < TABLES.length; i++) {
s.execute(TABLES[i][1]);
}
}
};
} // End baseSuite
/**
* Sets up the connection for a test case, clears all tables and resets
* all auto-generated keys used by the test fixtures.
* @throws SQLException
*/
public void setUp() throws SQLException
{
Connection conn = getConnection();
conn.setAutoCommit(false);
Statement s = createStatement();
for (int i = 0; i < TABLES.length; i++) {
s.execute("DELETE FROM " + TABLES[i][0]);
}
s.execute("ALTER TABLE t11_AutoGen ALTER COLUMN c12 RESTART WITH 1");
s.execute("ALTER TABLE t31_AutoGen ALTER COLUMN c32 RESTART WITH 1");
s.close();
conn.commit();
}
// TESTS
/**
* Requests generated keys for a new statement that hasn't executed any
* SQL yet.
* Old harness Test 1.
* Expected result: a NULL ResultSet.
* @throws SQLException
*/
public void testNoSql() throws SQLException
{
Statement s = createStatement();
assertNull("Expected NULL ResultSet", s.getGeneratedKeys());
s.close();
}
/**
* Requests generated keys for a Select statement (non-insert).
* Old harness Test 2.
* Expected result: a NULL ResultSet.
* @throws SQLException
*/
public void testSelect() throws SQLException
{
String sql="select * from t11_AutoGen";
Statement s = createStatement();
s.execute(sql, Statement.RETURN_GENERATED_KEYS);
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.close();
PreparedStatement ps =
prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps.close();
}
/**
* Requests generated keys for a multi-row insert statement.
* Old harness Test 3.
* Expected result: ResultSet has one row with a NULL key because it
* inserts more than one row and there was no prior one-row insert into
* a table with an auto-generated key.
* @throws SQLException
*/
public void testInsertManyRowsNoPriorKey() throws SQLException
{
String sqlStmt="insert into t31_AutoGen(c31) values (99), (98), (97)";
runInsertFourWaysKeyIsNull (sqlStmt);
}
/**
* Requests generated keys for a multi-row update statement after a
* one-row update into a table with an auto-generated key.
* Expected result: ResultSet has one row with a non-NULL key for the
* one-row update.
* @throws SQLException
*/
public void testUpdateManyRowsAfterOneRowKey() throws SQLException
{
// Do a one-row insert into a table with an auto-generated key.
Statement s = createStatement();
s.execute("insert into t11_AutoGen(c11) values (99)", Statement.RETURN_GENERATED_KEYS);
int expected=1;
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expected, keyval);
// Do a one-row update of a table with an auto-generated key.
s.execute("update t11_AutoGen set c12=default where c11=99", Statement.RETURN_GENERATED_KEYS);
expected=2;
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expected, keyval);
String sql="insert into t11_AutoGen(c11) values (99), (98), (97)";
s.execute(sql, Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expected, keyval);
// Do a one-row update of a table with an auto-generated key.
s.execute("update t11_AutoGen set c12=default where c11=97", Statement.RETURN_GENERATED_KEYS);
expected=6;
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expected, keyval);
// Do a multi-row update of a table with an auto-generated key.
s.execute("update t11_AutoGen set c12=default where c11=99", Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expected, keyval);
}
/**
* Requests generated keys for a multi-row insert statement after a
* one-row insert into a table with an auto-generated key.
* Old harness Test 7.
* Expected result: ResultSet has one row with a non-NULL key for the
* one-row insert.
* @throws SQLException
*/
public void testInsertManyRowsAfterOneRowKey() throws SQLException
{
// Do a one-row insert into a table with an auto-generated key.
Statement s = createStatement();
s.execute("insert into t11_AutoGen(c11) values (99)");
/* Although the insert into t31_AutoGen below inserts into a table
* with an auto-generated column, it won't increment the key from 1
* to 2 because it's a multi-row insert. Instead, the key it fetches
* will be for the previous insert into t11_AutoGen.
*/
int expected=1;
String sql="insert into t31_AutoGen(c31) values (99), (98), (97)";
s.execute(sql, Statement.RETURN_GENERATED_KEYS);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expected, keyval);
s.executeUpdate(sql, Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.executeUpdate()", expected, keyval);
s.close();
PreparedStatement ps =
prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
ps.execute();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.execute()", expected, keyval);
ps = prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.executeUpdate()", expected, keyval);
ps.close();
}
/**
* Requests generated keys after doing an insert into a table that doesn't
* have a generated column (and there hasn't been a one row insert into
* a table with auto-generated keys yet).
* Old harness Test 4.
* Expected result: ResultSet has one row with a NULL key.
* @throws SQLException
*/
public void testInsertNoAutoGen() throws SQLException
{
// The original test inserted 21 and 22.
Statement s = createStatement();
s.execute("insert into t21_noAutoGen values(21, 'true')");
s.execute("insert into t21_noAutoGen values(22, 'true')");
s.execute("insert into t21_noAutoGen values(23, 'true')",
Statement.RETURN_GENERATED_KEYS);
verifyNullKey("s.execute()", s.getGeneratedKeys());
s.executeUpdate("insert into t21_noAutoGen values(24, 'true')",
Statement.RETURN_GENERATED_KEYS);
verifyNullKey("s.executeUpdate()", s.getGeneratedKeys());
s.close();
PreparedStatement ps = prepareStatement(
"insert into t21_noAutoGen values(25, 'true')",
Statement.RETURN_GENERATED_KEYS);
ps.execute();
verifyNullKey("PreparedStatement.execute()", ps.getGeneratedKeys());
ps = prepareStatement("insert into t21_noAutoGen values(26, 'true')",
Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
verifyNullKey("ps.executeUpdate()", ps.getGeneratedKeys());
ps.close();
}
/**
* <p>
* Regression test for DERBY-5823 where the temporary row holder code
* failed when switching from an in-memory to an on-disk representation.
* </p>
*
* <p>
* Note that ideally the transition should never have happened in the first
* place, so this test verifies that either the transition logic can deal
* with the degenerate case where the row template is zero-length, or the
* insert code is smart enough to understand that there are no
* auto-generated keys for the query.
* </p>
*/
public void testDerby5823() throws SQLException {
setAutoCommit(false);
PreparedStatement ps = prepareStatement(
"insert into t21_feed_table values (?,?)");
ps.setString(2, "false");
// Just make sure we exceed the threshold for when the temporary row
// holder overflows to disk (implementation detail).
// When this test was written the threshold was five (5).
for (int i=0; i < 250; i++) {
ps.setInt(1, i);
ps.executeUpdate();
}
commit();
setAutoCommit(true);
final String insertSql =
"insert into t21_noAutoGen select * from t21_feed_table";
// No keys will be auto-generated by the insert query.
Statement s = createStatement();
s.execute(insertSql,
Statement.RETURN_GENERATED_KEYS
);
verifyNullKey("s.execute()", s.getGeneratedKeys());
// For good measure we also test with a prepared statement.
s.execute("delete from t21_noAutoGen");
// Again, no keys will be auto-generated by the insert query.
ps = prepareStatement(insertSql, Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
verifyNullKey("ps.executeUpdate()", ps.getGeneratedKeys());
}
/**
* Requests generated keys after doing a one-row insert into a table that
* has a generated column, but the insert is via a subquery with no where
* clause.
* Old harness Test 5a.
* Expected result: ResultSet has one row with a NULL key.
* @throws SQLException
*/
public void testInsertSubqueryNoWhereClause() throws SQLException
{
// Setup
Statement s = createStatement();
s.execute("insert into t21_noAutoGen values(21, 'true')");
s.close();
String sql="insert into t11_AutoGen(c11) select c21 from t21_noAutoGen";
runInsertFourWaysKeyIsNull (sql);
}
/**
* Requests generated keys after doing a one-row insert into a table
* that has a generated column, but the insert is via a subquery with
* a "where 1=2" clause.
* Old harness Test 5B.
* Expected result: ResultSet has one row with a NULL key.
* @throws SQLException
*/
public void testInsertSubqueryWhere1is2() throws SQLException
{
// Setup
Statement s = createStatement();
s.execute("insert into t21_noAutoGen values(21, 'true')");
s.close();
String sql =
"insert into t11_AutoGen(c11) select c21 from t21_noAutoGen " +
"where 1=2";
runInsertFourWaysKeyIsNull (sql);
}
/**
* Requests generated keys after doing a one-row insert into a table
* that has a generated column, but the insert is via a subquery with
* a "where c21=23" clause.
* Old harness Test 5c.
* Expected result: ResultSet with one row with a NULL key.
* @throws SQLException
*/
public void testInsertSubqueryWhereClause() throws SQLException
{
// Setup
Statement s = createStatement();
s.execute("insert into t21_noAutoGen(c21,c22) values(23, 'true')");
s.close();
String sql=
"insert into t11_AutoGen(c11) select c21 from t21_noAutoGen " +
"where c21=23";
runInsertFourWaysKeyIsNull (sql);
}
/**
* Requests generated keys after doing a one-row insert into a table
* that has an auto-generated column.
* Old harness Test 6.
* Expected result: ResultSet has one row with a non-NULL key.
* @throws SQLException
*/
public void testInsertOneRowKey() throws SQLException
{
String sql="insert into t11_AutoGen(c11) values (99)";
Statement s = createStatement();
s.execute(sql, Statement.RETURN_GENERATED_KEYS);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", 1, keyval);
s.executeUpdate(sql, Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.executeUpdate()", 2, keyval);
s.close();
PreparedStatement ps =
prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
ps.execute();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.execute()", 3, keyval);
ps = prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.executeUpdate()", 4, keyval);
ps.close();
/*
DERBY-3249 - Returned generated key result sets have the wrong
concurrency. Test should be expanded to handle all concurrencies/types.
// Test the type of the Statement object does not affect the
// type of the generated key ResultSet (checked in getKeyValue)
s = this.createStatement(ResultSet.CONCUR_UPDATABLE, ResultSet.TYPE_SCROLL_INSENSITIVE);
s.execute(sql, Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue(s.getGeneratedKeys());
assertEquals("Key value after s.execute()", 5, keyval);
*/
}
/**
* After a one-row insert into a table with an auto-generated key, next
* inserts into a table that does not have an auto-generated key, then
* requests generated keys.
* Old harness Test 8.
* Expected result: ResultSet has one row with a non-NULL key. All four
* queries in this test return the same result because they fetch the
* key generated for the previous insert, not the current one.
* @throws SQLException
*/
public void testInsertNoGenColAfterOneRowKey() throws SQLException
{
// Do a one-row insert into a table with an auto-generated key.
Statement s = createStatement();
s.execute("insert into t11_AutoGen(c11) values (99)");
/* The insert into t21_noAutoGen below doesn't insert into a table
* with an auto-generated column, so it won't increment the key from
* 1 to 2. The key it fetches will be for the previous insert into
* t11_AutoGen.
*/
int expected=1;
s.execute("insert into t21_noAutoGen values(27, 'true')",
Statement.RETURN_GENERATED_KEYS);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expected, keyval);
s.executeUpdate("insert into t21_noAutoGen values(28, 'true')",
Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.executeUpdate()", expected, keyval);
s.close();
PreparedStatement ps = prepareStatement(
"insert into t21_noAutoGen values(29, 'true')",
Statement.RETURN_GENERATED_KEYS);
ps.execute();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.execute()", expected, keyval);
ps = prepareStatement("insert into t21_noAutoGen values(30, 'true')",
Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.executeUpdate()", expected, keyval);
ps.close();
}
/**
* Requests generated keys for an UPDATE statement.
* Old harness Test 9.
* Expected result: a NULL ResultSet.
* @throws SQLException
*/
public void testUpdateOneRowKey() throws SQLException
{
Statement s = createStatement();
s.execute("insert into t11_AutoGen(c11) values(999)");
String sqlStmt="update t11_AutoGen set c12=default where c11=999";
s.execute(sqlStmt, Statement.RETURN_GENERATED_KEYS);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", 2, keyval);
s.executeUpdate(sqlStmt, Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.executeUpdate()", 3, keyval);
s.close();
PreparedStatement ps = prepareStatement(
sqlStmt, Statement.RETURN_GENERATED_KEYS);
ps.execute();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.execute()", 4, keyval);
ps = prepareStatement(sqlStmt, Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.executeUpdate()", 5, keyval);
ps.close();
}
/**
* Requests generated keys for an DELETE statement.
* Old master Test 10.
* Expected result: a NULL ResultSet.
* @throws SQLException
*/
public void testDelete() throws SQLException
{
Statement s = createStatement();
s.execute("insert into t11_AutoGen(c11) values(999)");
String sqlStmt="delete from t11_AutoGen";
s.execute(sqlStmt, Statement.RETURN_GENERATED_KEYS);
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.executeUpdate(sqlStmt, Statement.RETURN_GENERATED_KEYS);
assertNull("Expected NULL ResultSet after s.executeUpdate()",
s.getGeneratedKeys());
s.close();
PreparedStatement ps = prepareStatement(
sqlStmt, Statement.RETURN_GENERATED_KEYS);
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps.executeUpdate();
assertNull("Expected NULL ResultSet after ps.executeUpdate()",
ps.getGeneratedKeys());
ps.close();
}
/**
* Does a one-row insert into a table with a generated column, commits,
* then requests generated keys for an insert into a table without a
* generated column.
* Old master Test 11.
* Expected result: ResultSet has one row with a non-NULL key.
* The original code output this message: "expected to see resultset with
* one row of NULL value but instead get one row of non-NULL value from
* getGeneratedKeys".
* @throws SQLException
*/
public void testGetKeyAfterCommit() throws SQLException
{
// Setup transaction
Statement s = createStatement();
s.execute("insert into t11_AutoGen(c11) values(999)");
Connection conn = getConnection();
conn.commit();
/* The insert into t21_noAutoGen below doesn't insert into a table
* with an auto-generated column, so it won't increment the key from
* 1 to 2. The key it fetches will be for the previous insert into
* t11_AutoGen.
*/
int expected=1;
s.execute("insert into t21_noAutoGen values(31, 'true')",
Statement.RETURN_GENERATED_KEYS);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expected, keyval);
s.executeUpdate("insert into t21_noAutoGen values(32, 'true')",
Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.executeUpdate()", expected, keyval);
s.close();
PreparedStatement ps = prepareStatement(
"insert into t21_noAutoGen values(33, 'true')",
Statement.RETURN_GENERATED_KEYS);
ps.execute();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.execute()", expected, keyval);
ps = prepareStatement("insert into t21_noAutoGen values(34, 'true')",
Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.executeUpdate()", expected, keyval);
ps.close();
}
/**
* Does a one-row insert into a table with a generated column, next does
* a rollback, then requests generated keys for an insert into a table
* without a generated column.
* Old master Test 12.
* Expected result: ResultSet has one row with a non-NULL key.
* The original code output this message: "had expected to see resultset
* with one row of NULL value but instead get one row of non-NULL value
* from getGeneratedKeys".
* @throws SQLException
*/
public void testGetKeyAfterRollback() throws SQLException
{
Connection conn = getConnection();
Statement s = createStatement();
s.execute("insert into t11_AutoGen(c11) values(999)");
conn.rollback();
/* The insert into t21_noAutoGen below doesn't insert into a table
* with an auto-generated column, so it won't increment the key from
* 1 to 2. The key it fetches will be for the previous insert into
* t11_AutoGen, a value that never changes in this fixture.
*/
int expected=1;
s.execute("insert into t21_noAutoGen values(35, 'true')",
Statement.RETURN_GENERATED_KEYS);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expected, keyval);
s.executeUpdate("insert into t21_noAutoGen values(36, 'true')",
Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.executeUpdate()", expected, keyval);
s.close();
PreparedStatement ps = prepareStatement(
"insert into t21_noAutoGen values(37, 'true')",
Statement.RETURN_GENERATED_KEYS);
ps.execute();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.execute()", expected, keyval);
ps = prepareStatement("insert into t21_noAutoGen values(38, 'true')",
Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("key value after ps.executeUpdate()", expected, keyval);
ps.close();
}
/**
* Inserts one row into a table with an auto-generated column while inside
* a savepoint unit, does a rollback, then gets keys after an insert
* into a table without an auto-generated column.
* Old master Test 13.
* Expected result: ResultSet has one row with a non-NULL key, and the
* key value should be the same before and after the rollback.
* @throws SQLException
*/
public void testGetKeyAfterSavepointRollback() throws SQLException
{
Connection conn = getConnection();
Statement s = createStatement();
Savepoint savepoint1 = conn.setSavepoint();
int expected=1;
s.execute("insert into t11_AutoGen(c11) values(99)",
Statement.RETURN_GENERATED_KEYS);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value before rollback", expected, keyval);
conn.rollback(savepoint1);
s.execute("insert into t21_noAutoGen values(39, 'true')",
Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after rollback", expected, keyval);
s.close();
}
/**
* Inserts one row into a table with an auto-generated column, then
* examines the metadata for the generatedKeys ResultSet.
* Old master Test 14.
* @throws SQLException
*/
public void testGetKeyMetadataAfterInsert() throws SQLException
{
Statement s = createStatement();
s.execute("insert into t31_AutoGen(c31) values (99)",
Statement.RETURN_GENERATED_KEYS);
ResultSet rs = s.getGeneratedKeys();
ResultSetMetaData rsmd = rs.getMetaData();
assertEquals("ResultSet column count", 1, rsmd.getColumnCount());
assertEquals("Column type", "DECIMAL", rsmd.getColumnTypeName(1));
assertEquals("Column precision", 31, rsmd.getPrecision(1));
assertEquals("Column scale", 0, rsmd.getScale(1));
int keyval = getKeyValue (rs);
assertEquals("Key value", 1, keyval);
rs.close();
s.close();
}
/**
* Inserts one row into a table with an auto-generated column, but
* with NO_GENERATED_KEYS.
* Old master Test 15.
* Expected result: NULL ResultSet.
* @throws SQLException
*/
public void testInsertNoGenKeys() throws SQLException
{
Statement s = createStatement();
String sql="insert into t31_AutoGen(c31) values (99)";
s.execute(sql, Statement.NO_GENERATED_KEYS);
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.executeUpdate(sql, Statement.NO_GENERATED_KEYS);
assertNull("Expected NULL ResultSet after s.executeUpdate",
s.getGeneratedKeys());
s.close();
PreparedStatement ps =
prepareStatement(sql, Statement.NO_GENERATED_KEYS);
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps = prepareStatement(sql, Statement.NO_GENERATED_KEYS);
ps.executeUpdate();
assertNull("Expected NULL ResultSet after ps.executeUpdate",
ps.getGeneratedKeys());
ps.close();
}
/**
* Inserts one row into a table with an auto-generated column, but
* in the JDBC 2.0 way (with no generated key feature).
* Old master Test 16.
* Expected result: NULL ResultSet.
* @throws SQLException
*/
public void testInsertJDBC20syntax() throws SQLException
{
Statement s = createStatement();
String sql="insert into t31_AutoGen(c31) values (99)";
s.execute(sql);
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.executeUpdate(sql);
assertNull("Expected NULL ResultSet after s.executeUpdate",
s.getGeneratedKeys());
s.close();
PreparedStatement ps = prepareStatement(sql);
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps = prepareStatement(sql);
ps.executeUpdate();
assertNull("Expected NULL ResultSet after ps.executeUpdate",
ps.getGeneratedKeys());
ps.close();
}
/**
* Updates a row in a table with an auto-generated column and
* NO_GENERATED_KEYS, then fetches key.
* Old master Test 17.
* Expected result: NULL ResultSet.
* @throws SQLException
*/
public void testUpdateAutoGenNoGenKeys() throws SQLException
{
Statement s = createStatement();
// Insert a row for us to update
s.execute("insert into t31_AutoGen(c31) values (99)");
String sql="update t31_AutoGen set c31=98";
s.execute(sql, Statement.NO_GENERATED_KEYS);
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.executeUpdate(sql, Statement.NO_GENERATED_KEYS);
assertNull("Expected NULL ResultSet after s.executeUpdate",
s.getGeneratedKeys());
s.close();
PreparedStatement ps=prepareStatement(sql, Statement.NO_GENERATED_KEYS);
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps = prepareStatement(sql, Statement.NO_GENERATED_KEYS);
ps.executeUpdate();
assertNull("Expected NULL ResultSet after ps.executeUpdate",
ps.getGeneratedKeys());
ps.close();
}
/**
* Deletes rows from a table with an auto-generated column in the JDBC 2.0
* way (with no generated key feature), then fetches key.
* Old master Test 18.
* Expected result: NULL ResultSet.
* @throws SQLException
*/
public void testDeleteAutoGenNoGenKeysJDBC20syntax() throws SQLException
{
Statement s = createStatement();
String sql="delete from t31_AutoGen";
s.execute(sql);
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.executeUpdate(sql);
assertNull("Expected NULL ResultSet after s.executeUpdate",
s.getGeneratedKeys());
s.close();
PreparedStatement ps=prepareStatement(sql);
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps = prepareStatement(sql);
ps.executeUpdate();
assertNull("Expected NULL ResultSet after ps.executeUpdate",
ps.getGeneratedKeys());
ps.close();
}
/**
* Inserts a row into a table with a SQL function in the VALUES clause;
* the table does not have an auto-generated column.
* Old master Test 19.
* Expected result: ResultSet has one row. The key value is NULL if
* there has been no prior insert into a table with an auto-generated
* column; otherwise, the value is not NULL.
* The old master referenced an old issue for which this test was added.
* getGeneratedKeys() threw an exception if an insert statement included a
* SQL routine and set the flag to generate a generatedKeys ResultSet.
* @throws SQLException
*/
public void testInsertNoAutoGenExecuteSQLfunc() throws SQLException
{
Statement s = createStatement();
// Insert into a table that does not have an auto-gen column.
s.execute("insert into t21_noAutoGen values(40, MMWNI())",
Statement.RETURN_GENERATED_KEYS);
verifyNullKey("First insert", s.getGeneratedKeys());
assertTableRowCount("T21_NOAUTOGEN", 1);
// Now insert into a table that has an auto-gen column.
s.execute("insert into t31_AutoGen(c31) values (99)",
Statement.RETURN_GENERATED_KEYS);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after insert into t31_AutoGen", 1, keyval);
// Insert again into the table that does not have an auto-gen column.
s.execute("insert into t21_noAutoGen values(42, MMWNI())",
Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after insert into t21_noAutoGen", 1, keyval);
assertTableRowCount("T21_NOAUTOGEN", 2);
s.close();
}
/**
* Inserts a row into a table with a SQL function in the VALUES clause;
* the table has an auto-generated column.
* Old master: no test, but this seemed a natural addition given
* testInsertNoAutoGenExecuteSQLfunc().
* Expected result: ResultSet has one row with a non-NULL key value.
* @throws SQLException
*/
public void testInsertAutoGenExecuteSQLfunc() throws SQLException
{
String sql="insert into t31_AutoGen(c31) values (AddMe(1))";
Statement s = createStatement();
s.execute(sql, Statement.RETURN_GENERATED_KEYS);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", 1, keyval);
s.executeUpdate(sql, Statement.RETURN_GENERATED_KEYS);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.executeUpdate()", 2, keyval);
s.close();
PreparedStatement ps =
prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
ps.execute();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.execute()", 3, keyval);
ps = prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.executeUpdate()", 4, keyval);
ps.close();
}
/**
* Verifies fix for an old issue in which the ResultSet returned by
* getGenerateKeys was incorrectly tied to the activation of the
* PreparedStatement; so, when the ResultSet was garbage collected, the
* activation was closed, resulting in an "Activation closed, operation
* execute not permitted" exception on subsequent executes (warning:
* this fixture takes a noticeable time to run).
* Old master Test 20.
* Expected result: no exceptions should occur.
* @throws SQLException
*/
public void testResultSetGarbageCollection() throws SQLException
{
Connection conn = getConnection();
PreparedStatement ps =
prepareStatement("insert into t11_AutoGen(c11) values(?)",
Statement.RETURN_GENERATED_KEYS);
for (int i = 0; i < 100; i++)
{
ps.setInt(1, 100+i);
ps.executeUpdate();
ResultSet rs = ps.getGeneratedKeys();
while (rs.next()) {
rs.getInt(1);
}
rs.close();
conn.commit();
System.runFinalization();
System.gc();
System.runFinalization();
System.gc();
}
}
/**
* Test that use of columnIndexes to indicate which keys should be
* made available works as expected.
*
* @throws SQLException
*/
public void testColumnIndexes() throws SQLException
{
// Valid (typical) usage.
int [] colIndexes = new int [] { 2 };
testUserGivenColumns(colIndexes, null, 1);
// Mulitple columns. one not an identity column.
colIndexes = new int[] {1,2};
testUserGivenColumnsError(colIndexes, null);
// Derby client can't differentiate between
// valid and invalid identity columns. So the
// other tests do not apply.
if (usingDerbyNetClient())
return;
// Non-existent column index.
colIndexes = new int[] {100};
testUserGivenColumnsError(colIndexes, null);
// Valid column index but not an auto-gen column.
colIndexes[0] = 1;
testUserGivenColumnsError(colIndexes, null);
/* If user specifies the same column index multiple times,
* things should still work. We effectively just take the
* one and ignore the rest.
*/
colIndexes = new int [] { 2, 2, 2 };
testUserGivenColumns(colIndexes, null, 5);
// Multiple col indexes, one of which is invalid.
colIndexes[1] = 100;
testUserGivenColumnsError(colIndexes, null);
/* Multiple col indexes, one of which is invalid and another
* of which is not an auto-gen column.
*/
colIndexes[2] = 100;
testUserGivenColumnsError(colIndexes, null);
// Same as previous but with "bad" indexes switched.
colIndexes[1] = 100;
colIndexes[2] = 1;
testUserGivenColumnsError(colIndexes, null);
}
/**
* Test that use of columnNames to indicate which keys should be
* made available works as expected.
*
* @throws SQLException
*/
public void testColumnNames() throws SQLException
{
// Valid (typical) usage.
String [] colNames = new String [] { "C12" };
testUserGivenColumns(null, colNames, 1);
// column name array is of length > 1
colNames = new String[] {"C12","C13"};
testUserGivenColumnsError(null, colNames);
if (usingDerbyNetClient())
return;
// Non-existent column name.
colNames= new String[] {"NOTTHERE"};
testUserGivenColumnsError(null, colNames);
// Valid column name but not an auto-gen column.
colNames[0] = "C11";
testUserGivenColumnsError(null, colNames);
// "null" column name.
colNames[0] = null;
testUserGivenColumnsError(null, colNames);
/* If user specifies the same column name multiple times,
* things should still work. We effectively just take the
* one and ignore the rest.
*/
colNames = new String [] { "C12", "C12", "C12" };
testUserGivenColumns(null, colNames, 5);
// Multiple col names, one of which is invalid.
colNames[1] = "NOTTHERE";
testUserGivenColumnsError(null, colNames);
// Multiple col names, one of which is not an auto-gen column.
colNames[1] = "C11";
testUserGivenColumnsError(null, colNames);
// Multiple col names, one of which is null.
colNames[1] = null;
testUserGivenColumnsError(null, colNames);
/* Multiple col names, one of which is invalid and another
* of which is not an auto-gen column.
*/
colNames[1] = "C11";
colNames[2] = "NOTTHERE";
testUserGivenColumnsError(null, colNames);
// Same as previous but with "bad" names switched.
colNames[1] = "NOTTHERE";
colNames[2] = "C11";
testUserGivenColumnsError(null, colNames);
}
/**
* Verify that if user specifies an empty array for columNames or columnIndexes,
* it is the same as NO_GENERATED_KEYS
* @throws SQLException
*/
public void testUserGivenColumnsEmpty() throws SQLException
{
Statement s = createStatement();
String sql="insert into t11_AutoGen(c11) values (99)";
s.execute(sql, new String[] {});
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.executeUpdate(sql, new String[] {});
assertNull("Expected NULL ResultSet after s.executeUpdate()",
s.getGeneratedKeys());
PreparedStatement ps = null;
ps = prepareStatement(sql, new String[] {});
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps = prepareStatement(sql, new String[] {});
ps.executeUpdate();
assertNull("Expected NULL ResultSet after ps.executeUpdate()",
ps.getGeneratedKeys());
// No columnIndexes yet for derby client.
if (usingDerbyNetClient())
return;
s.execute(sql, new int[] {});
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.executeUpdate(sql, new int[] {});
assertNull("Expected NULL ResultSet after s.executeUpdate()",
s.getGeneratedKeys());
if (!usingEmbedded())
{
// Can't run these with embedded now because of DERBY-3430
ps = prepareStatement(sql, new int[] {});
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps = prepareStatement(sql, new int[] {});
ps.executeUpdate();
assertNull("Expected NULL ResultSet after ps.executeUpdate()",
ps.getGeneratedKeys());
}
}
/**
* Verify that if a user specifies a *NULL* column index or column
* name array to indicate which keys should be made available, Derby will
* effectively disable autogenerated keys (i.e. same as if user passed
* NO_GENERATED_KEYS).
*
* Expected result: a NULL result set.
* @throws SQLException
*/
public void testUserGivenColumnsNull() throws SQLException
{
Statement s = createStatement();
String sql="insert into t11_AutoGen(c11) values (99)";
s.execute(sql, (String[]) null);
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.executeUpdate(sql, (String[]) null);
assertNull("Expected NULL ResultSet after s.executeUpdate()",
s.getGeneratedKeys());
PreparedStatement ps;
ps = prepareStatement(sql, (String[]) null);
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps = prepareStatement(sql, (String[]) null);
ps.executeUpdate();
assertNull("Expected NULL ResultSet after ps.executeUpdate()",
ps.getGeneratedKeys());
// No columnIndexes yet for derby client.
if (usingDerbyNetClient())
return;
s.execute(sql, (int[]) null);
assertNull("Expected NULL ResultSet after s.execute()",
s.getGeneratedKeys());
s.executeUpdate(sql, (int[]) null);
assertNull("Expected NULL ResultSet after s.executeUpdate()",
s.getGeneratedKeys());
ps = prepareStatement(sql, (int[]) null);
ps.execute();
assertNull("Expected NULL ResultSet after ps.execute()",
ps.getGeneratedKeys());
ps = prepareStatement(sql, (int[]) null);
ps.executeUpdate();
assertNull("Expected NULL ResultSet after ps.executeUpdate()",
ps.getGeneratedKeys());
ps.close();
}
// Local utility methods.
/**
* Verify that if user specifies *valid* column indexes or column
* names to indicate which keys should be made available, Derby will
* return the correct results.
*
* Expected result: one row with a non-NULL key.
*
* @param colIndexes Array of column indexes indicating which keys
* should be made available. Must be null if colNames is non-null.
* @param colNames Array of column names indicating which keys should
* be made available. Must be null if colIndexes is non-null.
* @param expectedVal First expected autogenerated key; will be
* incremented for each successful INSERT statement.
*
* @throws SQLException
*/
private void testUserGivenColumns(int [] colIndexes, String [] colNames,
int expectedVal) throws SQLException
{
assertTrue("Exactly one of colIndexes or colNames should be null",
((colIndexes != null) ^ (colNames != null)));
boolean useIndexes = (colIndexes != null);
Statement s = createStatement();
String sql="insert into t11_AutoGen(c11) values (99)";
if (useIndexes)
s.execute(sql, colIndexes);
else
s.execute(sql, colNames);
int keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.execute()", expectedVal++, keyval);
if (useIndexes)
s.executeUpdate(sql, colIndexes);
else
s.executeUpdate(sql, colNames);
keyval = getKeyValue (s.getGeneratedKeys());
assertEquals("Key value after s.executeUpdate()",
expectedVal++, keyval);
s.close();
PreparedStatement ps = null;
if (useIndexes)
ps = prepareStatement(sql, colIndexes);
else
ps = prepareStatement(sql, colNames);
ps.execute();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.execute()", expectedVal++, keyval);
if (useIndexes)
ps = prepareStatement(sql, colIndexes);
else
ps = prepareStatement(sql, colNames);
ps.executeUpdate();
keyval = getKeyValue (ps.getGeneratedKeys());
assertEquals("Key value after ps.executeUpdate()",
expectedVal++, keyval);
ps.close();
}
/**
* Verify that if user specifies *INvalid* column indexes or column
* names to indicate which keys should be made available, Derby will
* throw an appropriate error.
*
* Expected result: Execution-time error: X0X0E or X0X0F.
*
* @param colIndexes Array of column indexes indicating which keys
* should be made available. Must be null if colNames is non-null.
* @param colNames Array of column names indicating which keys should
* be made available. Must be null if colIndexes is non-null.
*
* @throws SQLException
*/
private void testUserGivenColumnsError(int [] colIndexes,
String [] colNames) throws SQLException
{
assertTrue("Exactly one of colIndexes or colNames should be null.",
((colIndexes != null) ^ (colNames != null)));
boolean useIndexes = (colIndexes != null);
String expectedSQLState = (useIndexes ? "X0X0E" : "X0X0F");
// Derby client will only give an error if colNames array is not of length 1.
if (usingDerbyNetClient() && colNames != null &&
colNames.length != 1)
expectedSQLState = "X0X0D";
Statement s = createStatement();
String sql="insert into t11_AutoGen(c11) values (99)";
try {
if (useIndexes)
s.execute(sql, colIndexes);
else
s.execute(sql, colNames);
fail("Expected s.execute() to fail, but it did not.");
} catch (SQLException se) {
assertSQLState(expectedSQLState, se.getSQLState(), se);
}
try {
if (useIndexes)
s.executeUpdate(sql, colIndexes);
else
s.executeUpdate(sql, colNames);
fail("Expected s.executeUpdate() to fail, but it did not.");
} catch (SQLException se) {
assertSQLState(expectedSQLState, se.getSQLState(), se);
}
s.close();
PreparedStatement ps = null;
if (useIndexes)
ps = prepareStatement(sql, colIndexes);
else
ps = prepareStatement(sql, colNames);
try {
ps.execute();
fail("Expected ps.execute() to fail, but it did not.");
} catch (SQLException se) {
assertSQLState(expectedSQLState, se.getSQLState(), se);
}
try {
ps.executeUpdate();
fail("Expected ps.executeUpdate() to fail, but it did not.");
} catch (SQLException se) {
assertSQLState(expectedSQLState, se.getSQLState(), se);
}
ps.close();
}
/**
* Runs the same SQL INSERT statement four ways:
* Statement.execute,
* Statement.executeUpdate,
* PreparedStatement.execute, and
* PreparedStatement.executeUpdate,
* and expects the resulting key value to be NULL.
*
* @param sql The SQL statement to be executed
* @exception SQLException if a database error occurs
*/
public void runInsertFourWaysKeyIsNull (String sql)
throws SQLException
{
Statement s = createStatement();
s.execute(sql, Statement.RETURN_GENERATED_KEYS);
verifyNullKey("After s.execute()", s.getGeneratedKeys());
s.executeUpdate(sql, Statement.RETURN_GENERATED_KEYS);
verifyNullKey("After s.executeUpdate()", s.getGeneratedKeys());
s.close();
PreparedStatement ps =
prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
ps.execute();
verifyNullKey("After ps.execute()", ps.getGeneratedKeys());
ps = prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
ps.executeUpdate();
verifyNullKey("ps.executeUpdate()", ps.getGeneratedKeys());
ps.close();
}
/**
* Verifies that the generated key in a result set is null.
*
* @param description Text to be output for the assertion
* @param r ResultSet
* @exception SQLException if a database error occurs
*/
public void verifyNullKey (String description, ResultSet r)
throws SQLException
{
JDBC.assertGeneratedKeyResultSet(description, r);
int i = 0;
while(r.next())
{
assertNull(description, r.getString(1));
i++;
}
assertEquals(description, 1, i);
}
/**
* Gets the key value from the result set.
*
* @param r ResultSet
* @exception SQLException if a database error occurs
*/
public int getKeyValue (ResultSet r) throws SQLException
{if(r==null) System.out.println("it is null");
JDBC.assertGeneratedKeyResultSet("AutoGenJDBC30Test.getKeyValue", r);
int i = 0;
int retval = 0;
while(r.next())
{
assertNotNull("Key value is NULL", r.getString(1));
retval = r.getInt(1);
i++;
}
assertEquals("ResultSet rows", 1, i);
return retval;
}
// SQL ROUTINES (functions and procedures)
/**
* External code for the MMWNI() SQL function, which is called by
* the testInsertNoAutoGenExecuteSQLfunc fixture.
* @exception SQLException if a database error occurs
*/
public static String MyMethodWithNoInsert() throws SQLException
{
Connection conn =
DriverManager.getConnection("jdbc:default:connection");
Statement s = conn.createStatement();
s.executeQuery("select * from t11_AutoGen");
s.close();
conn.close();
return "true";
}
/**
* External code for the AddMe SQL function, which is called by
* the testInsertAutoGenExecuteSQLfunc fixture.
* @param p1 integer input argument to be used in calculation
* @exception SQLException if a database error occurs
*/
public static int addMe (int p1) throws SQLException
{
Connection conn =
DriverManager.getConnection("jdbc:default:connection");
Statement s = conn.createStatement();
s.executeQuery("select * from t11_AutoGen");
s.close();
conn.close();
return (p1 + p1);
}
}
|