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
|
/*
Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
The MySQL Connector/C++ is licensed under the terms of the GPLv2
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
MySQL Connectors. There are special exceptions to the terms and
conditions of the GPLv2 as it is applied to this software, see the
FLOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "ResultSetMetadataTest.h"
namespace testsuite
{
namespace compliance
{
/*
* @testName: testGetCatalogName
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getCatalogName(int colindex) method returns a String
* object representing the catalog name or an empty string ("")
* if not applicable.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* getCatalogName(int colindex) method.It should return a String object.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetCatalogName()
{
logMsg("Calling getCatalogName on ResultSetMetadata");
String sRetValue=rsmd->getCatalogName(1);
if (sRetValue.empty()) {
logMsg("getCatalogName method does not return the column's table's catalog name");
} else {
logMsg(String("getCatalogName method returns: ") + sRetValue);
}
}
/*
* @testName: testGetColumnClassName
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getColumnClassName(int colindex) method returns a String
* object representing the fully qualified name of the Java class
* to which a value in the designated column will be mapped.
* (See section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* getColumnClassName(int colindex) method.It should return a
* String object.
*/
/* throws Exception */
/* Not Implemented in C/C++ (not even part of interface at the moment) */
void ResultSetMetadataTest::testGetColumnClassName()
{
#ifdef getColumnClassName_IMPLEMENTED
logMsg("Calling getColumnClassName on ResultSetMetadata");
String sRetValue=rsmd->getColumnClassName(1);
if (sRetValue == NULL) {
logMsg(
"getColumnClassName method does not returns the fully-qualified name of the class");
} else {
logMsg(String("getColumnClassName method returns: ") + sRetValue);
}
#endif
}
/*
* @testName: testGetColumnCount
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getColumnCount method returns an integer value representing the
* number of columns in the ResultSet object.for which this ResultSetMetaData
* object stores information.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the getColumnCount()
* method on the ResultSetMetaData object.It should return an integer
* value greater than or equal to zero.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetColumnCount()
{
logMsg("Calling getColumnCount on ResultSetMetaData");
int coloumnCount=rsmd->getColumnCount();
if (coloumnCount >= 0) {
TestsListener::messagesLog()
<< "getColumnCount method returns: " << coloumnCount << std::endl;
} else {
logErr(" getColumnCount method returns a negative value");
}
}
/*
* @testName: testGetColumnDisplaySize
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications.None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getColumnDisplaySize(int colindex) method returns an int value
* representing the maximum width in characters.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* getColumnDisplaySize(int colindex) method.It should return an integer
* representing the normal maximum width in characters for column colindex.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetColumnDisplaySize()
{
/*try
{*/
logMsg("Calling getColumnDisplaySize on ResultSetMetaData");
int colDispSize=rsmd->getColumnDisplaySize(2);
if (colDispSize >= 0) {
TestsListener::messagesLog()
<< "getColumnDisplaySize method returns: " << colDispSize << std::endl;
} else {
logErr(" getColumnDisplaySize method returns a negative value");
}
/*}
catch (sql::DbcException & sqle) {
FAIL("Call to getColumnDisplaySize is Failed!");
}*/
/*catch (std::exception & e) {
logErr(String( "Unexpected exception " ) + e.what());
FAIL("Call to getColumnDisplaySize is Failed!");
}*/
}
/*
* @testName: testGetColumnLabel
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getColumnLabel(int colindex) method returns a String
* object representing the suggested title for use in printouts
* and displays.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* getColumnLabel(int colindex) method.It should return a String object.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetColumnLabel()
{
logMsg("Calling getColumnLabel on ResultSetMetadata");
String sRetValue=rsmd->getColumnLabel(2);
//"getColumnLabel method does not returns the suggested column title");
logMsg(String("getColumnLabel method returned: ") + sRetValue);
}
/*
* @testName: testGetColumnName
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getColumnName(int colindex) method returns a String
* object representing the column name (See JDK 1.2.2 API
* documentation)
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* getColumnName(int colindex) method.It should return a String object.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetColumnName()
{
logMsg("Calling getColumnName on ResultSetMetadata");
String sRetValue=rsmd->getColumnName(2);
logMsg(String("getColumnName method returns: ") + sRetValue);
//catch (sql::DbcInvalidArgument * sqle)
//{
// logMsg( String("Invalid argument exception caught") + sqle->what() );
}
/*
* @testName: testGetColumnType
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getColumnType(int colindex) method returns the JDBC type from
* the java.sql.Types class for the value in the designated column colindex.
* (See section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* getColumnType(int colindex) method.Check if an integer value is returned.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetColumnType()
{
logMsg("Calling getColumnType on ResultSetMetaData");
int colType=rsmd->getColumnType(1);
switch (colType) {
case sql::DataType::BIT :
case sql::DataType::TINYINT :
case sql::DataType::SMALLINT :
case sql::DataType::INTEGER :
case sql::DataType::BIGINT :
// case sql::DataType::FLOAT :
case sql::DataType::REAL :
case sql::DataType::DOUBLE :
case sql::DataType::NUMERIC :
case sql::DataType::DECIMAL :
case sql::DataType::CHAR :
case sql::DataType::VARCHAR :
case sql::DataType::LONGVARCHAR :
case sql::DataType::DATE :
case sql::DataType::TIME :
case sql::DataType::TIMESTAMP :
case sql::DataType::BINARY :
case sql::DataType::VARBINARY :
case sql::DataType::LONGVARBINARY :
case sql::DataType::SQLNULL :
// case sql::DataType::OTHER :
// case sql::DataType::JAVA_OBJECT:
// case sql::DataType::DISTINCT :
// case sql::DataType::STRUCT :
// case sql::DataType::ARRAY :
// case sql::DataType::BLOB :
// case sql::DataType::CLOB :
// case sql::DataType::REF :
TestsListener::messagesLog()
<< "getColumnType method returns: " << colType << std::endl;
break;
default:
TestsListener::errorsLog()
<< "getColumnType method returns a illegal value " << colType << std::endl;
FAIL("Call to getColumnTypeName failed !");
}
}
/*
* @testName: testGetColumnTypeName
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getColumnTypeName(int colindex) method returns a String
* object representing the type name used by the database.
* (See section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* getColumnTypeName(int colindex) method.It should return a
* String object.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetColumnTypeName()
{
logMsg("Calling getColumnTypeName on ResultSetMetadata");
String sRetValue=rsmd->getColumnTypeName(1);
logMsg(String("getColumnTypeName method returns: ") + sRetValue);
}
/*
* @testName: testGetPrecision
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getPrecision(int colindex) method returns an integer value
* representing the number of decimal digits for number types,maximum
* length in characters for character types,maximum length in bytes
* for JDBC binary datatypes.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* getPrecision(int colindex) method.It should return an integer greater
* than or equal to zero.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetPrecision()
{
logMsg("Calling getPrecision on ResultSetMetaData");
int precisionSize=rsmd->getPrecision(1);
if (precisionSize >= 0) {
TestsListener::messagesLog()
<< "getPrecision method returns: " << precisionSize << std::endl;
} else {
logErr(" getPrecision method returns a negative value");
}
}
/*
* @testName: testGetScale
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getScale(int colindex) method returns an integer value
* representing the number of digits to right of the decimal point.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the getScale(int colindex)
* method.It should return an integer greater than or equal to zero.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetScale()
{
logMsg("Calling getScale on ResultSetMetaData");
int scaleSize=rsmd->getScale(2);
if (scaleSize >= 0) {
TestsListener::messagesLog()
<< "getScale method returns: " << scaleSize << std::endl;
} else {
logErr(" getScale method returns a negative value");
}
}
/*
* @testName: testGetSchemaName
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getSchemaName(int colindex) method returns a String
* object representing the schema name or an empty string ("")
* if the DBMS.does not support this feature.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* getSchemaName(int colindex) method.It should return a String object.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetSchemaName()
{
logMsg("Calling getSchemaName on ResultSetMetadata");
String sRetValue=rsmd->getSchemaName(2);
logMsg(String("getSchemaName returns: ") + sRetValue);
}
/*
* @testName: testGetTableName
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The getTableName(int colindex) method returns a String
* object representing the table name or an empty string ("")
* if the DBMS does not support this feature.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the getTableName(int colindex)
* method.It should return a String object.
*/
/* throws Exception */
void ResultSetMetadataTest::testGetTableName()
{
logMsg("Calling getTableName on ResultSetMetadata");
String sRetValue=rsmd->getTableName(1);
logMsg(String("getTableName method returns: ") + sRetValue);
}
/*
* @testName: testIsAutoIncrement
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The isAutoIncrement(int colindex) method returns a boolean value;
* true if the column colindex is automatically numbered which makes
* the column read-only and false otherwise.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the isAutoIncrement(int column)
* method.It should return a boolean value.
*/
/* throws Exception */
void ResultSetMetadataTest::testIsAutoIncrement()
{
logMsg("Calling isAutoIncrement on ResultSetMetaData");
bool retValue=rsmd->isAutoIncrement(1);
if (retValue) {
logMsg(
"isAutoIncrement method returns column is automatically numbered");
} else {
logMsg(
"isAutoIncrement method returns column cannot be automatically numbered");
}
}
/* @testName: testIsCaseSensitive
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The isCaseSensitive(int colindex) method returns a boolean value;
* true if the column colindex is case sensitive and false otherwise.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the isCaseSensitive(int column)
* method.It should return a boolean value.
*/
/* throws Exception */
void ResultSetMetadataTest::testIsCaseSensitive()
{
logMsg("Calling isCaseSensitive on ResultSetMetaData");
bool retValue=rsmd->isCaseSensitive(1);
if (retValue) {
logMsg(
"isCaseSensitive method returns column's are case sensitive");
} else {
logMsg(
"isCaseSensitive method returns column's are case insensitive");
}
}
/* @testName: testIsCurrency
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The isCurrency(int colindex) method returns a boolean value;
* true if the column colindex is a cash value and false otherwise.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the isCurrency(int column)
* method.It should return a boolean value.
*/
/* throws Exception */
void ResultSetMetadataTest::testIsCurrency()
{
logMsg("Calling IsCurrency on ResultSetMetaData");
bool retValue=rsmd->isCurrency(2);
if (retValue) {
logMsg("isCurrency method returns column is a cash value");
} else {
logMsg(
"isCurrency method returns column does not contains a cash value");
}
}
/*
* @testName: testIsDefinitelyWritable
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The isDefinitelyWritable(int colindex) method returns a boolean value;
* true if the write on column colindex will definitely succeed
* and false otherwise. (See JDK 1.2.2 API documentation)
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the
* isDefinitelyWritable(int column) method.It should return a boolean value.
*/
/* throws Exception */
void ResultSetMetadataTest::testIsDefinitelyWritable()
{
logMsg("Calling isDefinitelyWritable on ResultSetMetaData");
bool retValue=rsmd->isDefinitelyWritable(1);
if (retValue) {
logMsg(
"isDefinitelyWritable method returns write on the column is definitely succeed");
} else {
logMsg(
"isDefinitelyWritable method returns write on the column is definitely failed");
}
}
/*
* @testName: testIsNullable
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The isNullable(int colindex) method returns an integer value
* the possible values are columnNoNulls, columnNullable and
* columnNullableUnknown.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the isNullable(int column)
* method.It should return an integer value which is one of the constants
* columnNoNulls(0),columnNullable(1) and columnNullableUnknown(2).
*/
/* throws Exception */
void ResultSetMetadataTest::testIsNullable()
{
logMsg("Calling isNullable on ResultSetMetaData");
int coloumnCount=rsmd->isNullable(2);
if ((coloumnCount == sql::ResultSetMetaData::columnNoNulls)
|| (coloumnCount == sql::ResultSetMetaData::columnNullable)
|| (coloumnCount == sql::ResultSetMetaData::columnNullableUnknown)) {
TestsListener::messagesLog()
<< "isNullable method returns: " << coloumnCount << std::endl;
} else {
logErr(" isNullable method returns a negative value");
}
}
/*
* @testName: testIsReadOnly
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The isReadOnly(int colindex) method returns a boolean value;
* true if the column colindex is definitely not writable and false
* otherwise.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the isReadOnly(int column)
* method.It should return a boolean value.
*/
/* throws Exception */
void ResultSetMetadataTest::testIsReadOnly()
{
logMsg("Calling isReadOnly on ResultSetMetaData");
bool retValue=rsmd->isReadOnly(1);
if (retValue) {
logMsg("isReadOnly method returns column cannot be writable");
} else {
logMsg("isReadOnly method returns column can be writable");
}
}
/*
* @testName: testIsSearchable
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The isSearchable(int colindex) method returns a boolean value;
* true if the value stored in column colindex can be used in a
* WHERE clause and false otherwise.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the isSearchable(int column)
* method.It should return a boolean value.
*/
/* throws Exception */
void ResultSetMetadataTest::testIsSearchable()
{
logMsg("Calling isSearchable on ResultSetMetaData");
bool retValue=rsmd->isSearchable(1);
if (retValue) {
logMsg(
"isSearchable method returns column can be used in a where clause");
} else {
logMsg(
"isSearchable method returns column cannot be used in a where clause");
}
}
/* @testName: testIsSigned
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The isSigned(int colindex) method returns a boolean value;
* true if the value stored in column colindex is a signed number
* and false otherwise.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the isSigned(int column)
* method.It should return a boolean value.
*/
/* throws Exception */
void ResultSetMetadataTest::testIsSigned()
{
logMsg("Calling isSigned on ResultSetMetaData");
bool retValue=rsmd->isSigned(2);
if (retValue) {
logMsg(
"isSigned method returns values in the column are signed numbers");
} else {
logMsg(
"isSigned method returns values in the column are isUnsigned numbers");
}
}
/*
* @testName: testIsWritable
* @assertion: The ResultSetMetaData provides information about the types and
* properties of the columns in a ResultSet object.
* (See section 27.1 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* A driver must provide full support for DatabaseMetaData and
* ResultSetMetaData. This implies that all of the methods in the
* ResultSetMetaData interface must be implemented and must behave as
* specified in the JDBC 1.0 and 2.0 specifications. None of the
* methods in DatabaseMetaData and ResultSetMetaData may throw an
* exception because they are not implemented. (See section 6.2.2.3
* of Java2 Platform Enterprise Edition (J2EE) Specification v1.2)
*
* The isWritable(int colindex) method returns a boolean value;
* true if the column colindex is possible for write and false
* otherwise.
* (See Section 27.3 of JDBC 2.0 API Reference & Tutorial 2nd edition)
*
* @test_Strategy: Get the ResultSetMetaData object from the corresponding ResultSet
* by using the ResultSet's getMetaData method.Call the isWritable(int column)
* method.It should return a boolean value.
*/
/* throws Exception */
void ResultSetMetadataTest::testIsWritable()
{
logMsg("Calling isWritable on ResultSetMetaData");
bool retValue=rsmd->isWritable(1);
if (retValue) {
logMsg("isWritable method returns column is writable");
} else {
logMsg("isWritable method returns column cannot be writable");
}
}
/**
* @see junit.framework.TestCase#setUp()
*/
/* throws Exception */
void ResultSetMetadataTest::setUp()
{
super::setUp();
createStandardTable(TABLE_CTSTABLE2);
Properties::const_iterator cit=sqlProps.find("ftable");
String fTableName;
if (cit != sqlProps.end()) {
fTableName=cit->second;
}
query=String("SELECT COF_NAME, PRICE FROM ") + fTableName;
stmt.reset(conn->createStatement(/*sql::ResultSet::TYPE_SCROLL_INSENSITIVE,sql::ResultSet::CONCUR_READ_ONLY*/
));
rs.reset(stmt->executeQuery(query));
rsmd = rs->getMetaData();
}
}
}
|