File: ResultSetMetadataTest.h

package info (click to toggle)
mysql-connector-c%2B%2B 1.1.0-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,296 kB
  • sloc: cpp: 40,503; ansic: 2,114; php: 528; sql: 402; xml: 259; makefile: 50
file content (653 lines) | stat: -rw-r--r-- 35,744 bytes parent folder | download
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
/*
  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 "../BaseTestFixture.h"

/**
 * @author mmatthew
 *
 * To change this generated comment edit the template variable "typecomment":
 * Window>Preferences>Java>Templates.
 * To enable and disable the creation of type comments go to
 * Window>Preferences>Java>Code Generation.
 */

namespace testsuite
{
namespace compliance
{

class ResultSetMetadataTest : public BaseTestFixture
{
private:
  typedef BaseTestFixture super;

  ResultSetMetaData rsmd;
  String            query;

protected:

  /**
   * @see junit.framework.TestCase#setUp()
   */

  /* throws std::exception * */

  void setUp();
public:

  TEST_FIXTURE(ResultSetMetadataTest)
  {
    TEST_CASE(testGetCatalogName);
    TEST_CASE(testGetColumnClassName);
    TEST_CASE(testGetColumnCount);
    TEST_CASE(testGetColumnDisplaySize);
    TEST_CASE(testGetColumnLabel);
    TEST_CASE(testGetColumnName);
    TEST_CASE(testGetColumnType);
    TEST_CASE(testGetColumnTypeName);
    TEST_CASE(testGetPrecision);
    TEST_CASE(testGetScale);
    TEST_CASE(testGetSchemaName);
    TEST_CASE(testGetTableName);
    TEST_CASE(testIsAutoIncrement);
    TEST_CASE(testIsCaseSensitive);
    TEST_CASE(testIsCurrency);
    TEST_CASE(testIsDefinitelyWritable);
    TEST_CASE(testIsNullable);
    TEST_CASE(testIsReadOnly);
    TEST_CASE(testIsSearchable);
    TEST_CASE(testIsSigned);
    TEST_CASE(testIsWritable);
  }

  /*
   * @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 std::exception * */

  void testGetCatalogName();
  /*
   * @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 std::exception * */

  void testGetColumnClassName();
  /*
   * @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 std::exception * */

  void testGetColumnCount();
  /*
   * @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 std::exception * */

  void testGetColumnDisplaySize();
  /*
   * @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 std::exception * */

  void testGetColumnLabel();
  /*
   * @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 std::exception * */

  void testGetColumnName();
  /*
   * @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 std::exception * */

  void testGetColumnType();
  /*
   * @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 std::exception * */

  void testGetColumnTypeName();
  /*
   * @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 std::exception * */

  void testGetPrecision();
  /*
   * @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 std::exception * */

  void testGetScale();
  /*
   * @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 std::exception * */

  void testGetSchemaName();
  /*
   * @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 std::exception * */

  void testGetTableName();
  /*
   * @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 std::exception * */

  void testIsAutoIncrement();
  /* @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 std::exception * */

  void testIsCaseSensitive();
  /* @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 std::exception * */

  void testIsCurrency();
  /*
   * @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 std::exception * */

  void testIsDefinitelyWritable();
  /*
   * @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 std::exception * */

  void testIsNullable();
  /*
   * @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 std::exception * */

  void testIsReadOnly();
  /*
   * @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 std::exception * */

  void testIsSearchable();
  /* @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 std::exception * */

  void testIsSigned();
  /*
   * @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 std::exception * */

  void testIsWritable();
};
REGISTER_FIXTURE(ResultSetMetadataTest);

}
}