forked from bjmashibing/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResultSet.html
More file actions
8485 lines (8408 loc) · 436 KB
/
ResultSet.html
File metadata and controls
8485 lines (8408 loc) · 436 KB
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
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>ResultSet (Java SE 12 & JDK 12 )</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="java.sql.ResultSet interface">
<meta name="keywords" content="FETCH_FORWARD">
<meta name="keywords" content="FETCH_REVERSE">
<meta name="keywords" content="FETCH_UNKNOWN">
<meta name="keywords" content="TYPE_FORWARD_ONLY">
<meta name="keywords" content="TYPE_SCROLL_INSENSITIVE">
<meta name="keywords" content="TYPE_SCROLL_SENSITIVE">
<meta name="keywords" content="CONCUR_READ_ONLY">
<meta name="keywords" content="CONCUR_UPDATABLE">
<meta name="keywords" content="HOLD_CURSORS_OVER_COMMIT">
<meta name="keywords" content="CLOSE_CURSORS_AT_COMMIT">
<meta name="keywords" content="next()">
<meta name="keywords" content="close()">
<meta name="keywords" content="wasNull()">
<meta name="keywords" content="getString()">
<meta name="keywords" content="getBoolean()">
<meta name="keywords" content="getByte()">
<meta name="keywords" content="getShort()">
<meta name="keywords" content="getInt()">
<meta name="keywords" content="getLong()">
<meta name="keywords" content="getFloat()">
<meta name="keywords" content="getDouble()">
<meta name="keywords" content="getBigDecimal()">
<meta name="keywords" content="getBytes()">
<meta name="keywords" content="getDate()">
<meta name="keywords" content="getTime()">
<meta name="keywords" content="getTimestamp()">
<meta name="keywords" content="getAsciiStream()">
<meta name="keywords" content="getUnicodeStream()">
<meta name="keywords" content="getBinaryStream()">
<meta name="keywords" content="getWarnings()">
<meta name="keywords" content="clearWarnings()">
<meta name="keywords" content="getCursorName()">
<meta name="keywords" content="getMetaData()">
<meta name="keywords" content="getObject()">
<meta name="keywords" content="findColumn()">
<meta name="keywords" content="getCharacterStream()">
<meta name="keywords" content="isBeforeFirst()">
<meta name="keywords" content="isAfterLast()">
<meta name="keywords" content="isFirst()">
<meta name="keywords" content="isLast()">
<meta name="keywords" content="beforeFirst()">
<meta name="keywords" content="afterLast()">
<meta name="keywords" content="first()">
<meta name="keywords" content="last()">
<meta name="keywords" content="getRow()">
<meta name="keywords" content="absolute()">
<meta name="keywords" content="relative()">
<meta name="keywords" content="previous()">
<meta name="keywords" content="setFetchDirection()">
<meta name="keywords" content="getFetchDirection()">
<meta name="keywords" content="setFetchSize()">
<meta name="keywords" content="getFetchSize()">
<meta name="keywords" content="getType()">
<meta name="keywords" content="getConcurrency()">
<meta name="keywords" content="rowUpdated()">
<meta name="keywords" content="rowInserted()">
<meta name="keywords" content="rowDeleted()">
<meta name="keywords" content="updateNull()">
<meta name="keywords" content="updateBoolean()">
<meta name="keywords" content="updateByte()">
<meta name="keywords" content="updateShort()">
<meta name="keywords" content="updateInt()">
<meta name="keywords" content="updateLong()">
<meta name="keywords" content="updateFloat()">
<meta name="keywords" content="updateDouble()">
<meta name="keywords" content="updateBigDecimal()">
<meta name="keywords" content="updateString()">
<meta name="keywords" content="updateBytes()">
<meta name="keywords" content="updateDate()">
<meta name="keywords" content="updateTime()">
<meta name="keywords" content="updateTimestamp()">
<meta name="keywords" content="updateAsciiStream()">
<meta name="keywords" content="updateBinaryStream()">
<meta name="keywords" content="updateCharacterStream()">
<meta name="keywords" content="updateObject()">
<meta name="keywords" content="insertRow()">
<meta name="keywords" content="updateRow()">
<meta name="keywords" content="deleteRow()">
<meta name="keywords" content="refreshRow()">
<meta name="keywords" content="cancelRowUpdates()">
<meta name="keywords" content="moveToInsertRow()">
<meta name="keywords" content="moveToCurrentRow()">
<meta name="keywords" content="getStatement()">
<meta name="keywords" content="getRef()">
<meta name="keywords" content="getBlob()">
<meta name="keywords" content="getClob()">
<meta name="keywords" content="getArray()">
<meta name="keywords" content="getURL()">
<meta name="keywords" content="updateRef()">
<meta name="keywords" content="updateBlob()">
<meta name="keywords" content="updateClob()">
<meta name="keywords" content="updateArray()">
<meta name="keywords" content="getRowId()">
<meta name="keywords" content="updateRowId()">
<meta name="keywords" content="getHoldability()">
<meta name="keywords" content="isClosed()">
<meta name="keywords" content="updateNString()">
<meta name="keywords" content="updateNClob()">
<meta name="keywords" content="getNClob()">
<meta name="keywords" content="getSQLXML()">
<meta name="keywords" content="updateSQLXML()">
<meta name="keywords" content="getNString()">
<meta name="keywords" content="getNCharacterStream()">
<meta name="keywords" content="updateNCharacterStream()">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ResultSet (Java SE 12 & JDK 12 )";
}
}
catch(err) {
}
//-->
var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":38,"i15":6,"i16":38,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":6,"i54":6,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":38,"i83":38,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6,"i102":6,"i103":6,"i104":6,"i105":6,"i106":6,"i107":6,"i108":6,"i109":6,"i110":6,"i111":6,"i112":6,"i113":6,"i114":6,"i115":6,"i116":6,"i117":6,"i118":6,"i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":6,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6,"i137":6,"i138":6,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":6,"i145":6,"i146":6,"i147":6,"i148":6,"i149":6,"i150":6,"i151":6,"i152":6,"i153":6,"i154":6,"i155":6,"i156":6,"i157":6,"i158":6,"i159":6,"i160":6,"i161":6,"i162":6,"i163":6,"i164":6,"i165":6,"i166":6,"i167":6,"i168":6,"i169":6,"i170":6,"i171":18,"i172":18,"i173":6,"i174":6,"i175":18,"i176":18,"i177":6,"i178":6,"i179":6,"i180":6,"i181":6,"i182":6,"i183":6,"i184":6,"i185":6,"i186":6,"i187":6,"i188":6,"i189":6,"i190":6,"i191":6,"i192":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"],32:["t6","Deprecated Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
var pathtoroot = "../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../index.html">Overview</a></li>
<li><a href="../../module-summary.html">Module</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ResultSet.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><div style="margin-top: 14px;"><strong>Java SE 12 & JDK 12</strong> </div></div>
</div>
<div class="subNav">
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="moduleLabelInType">Module</span> <a href="../../module-summary.html">java.sql</a></div>
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">java.sql</a></div>
<h2 title="Interface ResultSet" class="title">Interface ResultSet</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd><code><a href="../../../java.base/java/lang/AutoCloseable.html" title="interface in java.lang">AutoCloseable</a></code>, <code><a href="Wrapper.html" title="interface in java.sql">Wrapper</a></code></dd>
</dl>
<dl>
<dt>All Known Subinterfaces:</dt>
<dd><code><a href="../../../java.sql.rowset/javax/sql/rowset/CachedRowSet.html" title="interface in javax.sql.rowset">CachedRowSet</a></code>, <code><a href="../../../java.sql.rowset/javax/sql/rowset/FilteredRowSet.html" title="interface in javax.sql.rowset">FilteredRowSet</a></code>, <code><a href="../../../java.sql.rowset/javax/sql/rowset/JdbcRowSet.html" title="interface in javax.sql.rowset">JdbcRowSet</a></code>, <code><a href="../../../java.sql.rowset/javax/sql/rowset/JoinRowSet.html" title="interface in javax.sql.rowset">JoinRowSet</a></code>, <code><a href="../../javax/sql/RowSet.html" title="interface in javax.sql">RowSet</a></code>, <code><a href="../../../java.sql.rowset/javax/sql/rowset/spi/SyncResolver.html" title="interface in javax.sql.rowset.spi">SyncResolver</a></code>, <code><a href="../../../java.sql.rowset/javax/sql/rowset/WebRowSet.html" title="interface in javax.sql.rowset">WebRowSet</a></code></dd>
</dl>
<hr>
<pre>public interface <span class="typeNameLabel">ResultSet</span>
extends <a href="Wrapper.html" title="interface in java.sql">Wrapper</a>, <a href="../../../java.base/java/lang/AutoCloseable.html" title="interface in java.lang">AutoCloseable</a></pre>
<div class="block">A table of data representing a database result set, which
is usually generated by executing a statement that queries the database.
<P>A <code>ResultSet</code> object maintains a cursor pointing
to its current row of data. Initially the cursor is positioned
before the first row. The <code>next</code> method moves the
cursor to the next row, and because it returns <code>false</code>
when there are no more rows in the <code>ResultSet</code> object,
it can be used in a <code>while</code> loop to iterate through
the result set.
<P>
A default <code>ResultSet</code> object is not updatable and
has a cursor that moves forward only. Thus, you can
iterate through it only once and only from the first row to the
last row. It is possible to
produce <code>ResultSet</code> objects that are scrollable and/or
updatable. The following code fragment, in which <code>con</code>
is a valid <code>Connection</code> object, illustrates how to make
a result set that is scrollable and insensitive to updates by others, and
that is updatable. See <code>ResultSet</code> fields for other
options.
<PRE>
Statement stmt = con.createStatement(
ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
ResultSet rs = stmt.executeQuery("SELECT a, b FROM TABLE2");
// rs will be scrollable, will not show changes made by others,
// and will be updatable
</PRE>
The <code>ResultSet</code> interface provides
<i>getter</i> methods (<code>getBoolean</code>, <code>getLong</code>, and so on)
for retrieving column values from the current row.
Values can be retrieved using either the index number of the
column or the name of the column. In general, using the
column index will be more efficient. Columns are numbered from 1.
For maximum portability, result set columns within each row should be
read in left-to-right order, and each column should be read only once.
<P>For the getter methods, a JDBC driver attempts
to convert the underlying data to the Java type specified in the
getter method and returns a suitable Java value. The JDBC specification
has a table showing the allowable mappings from SQL types to Java types
that can be used by the <code>ResultSet</code> getter methods.
<P>Column names used as input to getter methods are case
insensitive. When a getter method is called with
a column name and several columns have the same name,
the value of the first matching column will be returned.
The column name option is
designed to be used when column names are used in the SQL
query that generated the result set.
For columns that are NOT explicitly named in the query, it
is best to use column numbers. If column names are used, the
programmer should take care to guarantee that they uniquely refer to
the intended columns, which can be assured with the SQL <i>AS</i> clause.
<P>
A set of updater methods were added to this interface
in the JDBC 2.0 API (Java™ 2 SDK,
Standard Edition, version 1.2). The comments regarding parameters
to the getter methods also apply to parameters to the
updater methods.
<P>
The updater methods may be used in two ways:
<ol>
<LI>to update a column value in the current row. In a scrollable
<code>ResultSet</code> object, the cursor can be moved backwards
and forwards, to an absolute position, or to a position
relative to the current row.
The following code fragment updates the <code>NAME</code> column
in the fifth row of the <code>ResultSet</code> object
<code>rs</code> and then uses the method <code>updateRow</code>
to update the data source table from which <code>rs</code> was derived.
<PRE>
rs.absolute(5); // moves the cursor to the fifth row of rs
rs.updateString("NAME", "AINSWORTH"); // updates the
// <code>NAME</code> column of row 5 to be <code>AINSWORTH</code>
rs.updateRow(); // updates the row in the data source
</PRE>
<LI>to insert column values into the insert row. An updatable
<code>ResultSet</code> object has a special row associated with
it that serves as a staging area for building a row to be inserted.
The following code fragment moves the cursor to the insert row, builds
a three-column row, and inserts it into <code>rs</code> and into
the data source table using the method <code>insertRow</code>.
<PRE>
rs.moveToInsertRow(); // moves cursor to the insert row
rs.updateString(1, "AINSWORTH"); // updates the
// first column of the insert row to be <code>AINSWORTH</code>
rs.updateInt(2,35); // updates the second column to be <code>35</code>
rs.updateBoolean(3, true); // updates the third column to <code>true</code>
rs.insertRow();
rs.moveToCurrentRow();
</PRE>
</ol>
<P>A <code>ResultSet</code> object is automatically closed when the
<code>Statement</code> object that
generated it is closed, re-executed, or used
to retrieve the next result from a sequence of multiple results.
<P>The number, types and properties of a <code>ResultSet</code>
object's columns are provided by the <code>ResultSetMetaData</code>
object returned by the <code>ResultSet.getMetaData</code> method.</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="Statement.html#executeQuery(java.lang.String)"><code>Statement.executeQuery(java.lang.String)</code></a>,
<a href="Statement.html#getResultSet()"><code>Statement.getResultSet()</code></a>,
<a href="ResultSetMetaData.html" title="interface in java.sql"><code>ResultSetMetaData</code></a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<div class="memberSummary">
<table>
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Field</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#CLOSE_CURSORS_AT_COMMIT">CLOSE_CURSORS_AT_COMMIT</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating that open <code>ResultSet</code> objects with this
holdability will be closed when the current transaction is committed.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#CONCUR_READ_ONLY">CONCUR_READ_ONLY</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating the concurrency mode for a
<code>ResultSet</code> object that may NOT be updated.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#CONCUR_UPDATABLE">CONCUR_UPDATABLE</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating the concurrency mode for a
<code>ResultSet</code> object that may be updated.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#FETCH_FORWARD">FETCH_FORWARD</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating that the rows in a result set will be
processed in a forward direction; first-to-last.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#FETCH_REVERSE">FETCH_REVERSE</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating that the rows in a result set will be
processed in a reverse direction; last-to-first.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#FETCH_UNKNOWN">FETCH_UNKNOWN</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating that the order in which rows in a
result set will be processed is unknown.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#HOLD_CURSORS_OVER_COMMIT">HOLD_CURSORS_OVER_COMMIT</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating that open <code>ResultSet</code> objects with this
holdability will remain open when the current transaction is committed.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#TYPE_FORWARD_ONLY">TYPE_FORWARD_ONLY</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating the type for a <code>ResultSet</code> object
whose cursor may move only forward.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#TYPE_SCROLL_INSENSITIVE">TYPE_SCROLL_INSENSITIVE</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating the type for a <code>ResultSet</code> object
that is scrollable but generally not sensitive to changes to the data
that underlies the <code>ResultSet</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#TYPE_SCROLL_SENSITIVE">TYPE_SCROLL_SENSITIVE</a></span></code></th>
<td class="colLast">
<div class="block">The constant indicating the type for a <code>ResultSet</code> object
that is scrollable and generally sensitive to changes to the data
that underlies the <code>ResultSet</code>.</div>
</td>
</tr>
</tbody>
</table>
</div>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<div class="memberSummary">
<div role="tablist" aria-orientation="horizontal"><button role="tab" aria-selected="true" aria-controls="memberSummary_tabpanel" tabindex="0" onkeydown="switchTab(event)" id="t0" class="activeTableTab">All Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t2" class="tableTab" onclick="show(2);">Instance Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t3" class="tableTab" onclick="show(4);">Abstract Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t5" class="tableTab" onclick="show(16);">Default Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t6" class="tableTab" onclick="show(32);">Deprecated Methods</button></div>
<div id="memberSummary_tabpanel" role="tabpanel">
<table aria-labelledby="t0">
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor" id="i0">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#absolute(int)">absolute</a></span>​(int row)</code></th>
<td class="colLast">
<div class="block">Moves the cursor to the given row number in
this <code>ResultSet</code> object.</div>
</td>
</tr>
<tr class="rowColor" id="i1">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#afterLast()">afterLast</a></span>()</code></th>
<td class="colLast">
<div class="block">Moves the cursor to the end of
this <code>ResultSet</code> object, just after the
last row.</div>
</td>
</tr>
<tr class="altColor" id="i2">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#beforeFirst()">beforeFirst</a></span>()</code></th>
<td class="colLast">
<div class="block">Moves the cursor to the front of
this <code>ResultSet</code> object, just before the
first row.</div>
</td>
</tr>
<tr class="rowColor" id="i3">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#cancelRowUpdates()">cancelRowUpdates</a></span>()</code></th>
<td class="colLast">
<div class="block">Cancels the updates made to the current row in this
<code>ResultSet</code> object.</div>
</td>
</tr>
<tr class="altColor" id="i4">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clearWarnings()">clearWarnings</a></span>()</code></th>
<td class="colLast">
<div class="block">Clears all warnings reported on this <code>ResultSet</code> object.</div>
</td>
</tr>
<tr class="rowColor" id="i5">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
<td class="colLast">
<div class="block">Releases this <code>ResultSet</code> object's database and
JDBC resources immediately instead of waiting for
this to happen when it is automatically closed.</div>
</td>
</tr>
<tr class="altColor" id="i6">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#deleteRow()">deleteRow</a></span>()</code></th>
<td class="colLast">
<div class="block">Deletes the current row from this <code>ResultSet</code> object
and from the underlying database.</div>
</td>
</tr>
<tr class="rowColor" id="i7">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#findColumn(java.lang.String)">findColumn</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Maps the given <code>ResultSet</code> column label to its
<code>ResultSet</code> column index.</div>
</td>
</tr>
<tr class="altColor" id="i8">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#first()">first</a></span>()</code></th>
<td class="colLast">
<div class="block">Moves the cursor to the first row in
this <code>ResultSet</code> object.</div>
</td>
</tr>
<tr class="rowColor" id="i9">
<td class="colFirst"><code><a href="Array.html" title="interface in java.sql">Array</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArray(int)">getArray</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as an <code>Array</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i10">
<td class="colFirst"><code><a href="Array.html" title="interface in java.sql">Array</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArray(java.lang.String)">getArray</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as an <code>Array</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i11">
<td class="colFirst"><code><a href="../../../java.base/java/io/InputStream.html" title="class in java.io">InputStream</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getAsciiStream(int)">getAsciiStream</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a stream of ASCII characters.</div>
</td>
</tr>
<tr class="altColor" id="i12">
<td class="colFirst"><code><a href="../../../java.base/java/io/InputStream.html" title="class in java.io">InputStream</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getAsciiStream(java.lang.String)">getAsciiStream</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a stream of
ASCII characters.</div>
</td>
</tr>
<tr class="rowColor" id="i13">
<td class="colFirst"><code><a href="../../../java.base/java/math/BigDecimal.html" title="class in java.math">BigDecimal</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBigDecimal(int)">getBigDecimal</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a
<code>java.math.BigDecimal</code> with full precision.</div>
</td>
</tr>
<tr class="altColor" id="i14">
<td class="colFirst"><code><a href="../../../java.base/java/math/BigDecimal.html" title="class in java.math">BigDecimal</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBigDecimal(int,int)">getBigDecimal</a></span>​(int columnIndex,
int scale)</code></th>
<td class="colLast">
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="deprecationComment">Use <code>getBigDecimal(int columnIndex)</code>
or <code>getBigDecimal(String columnLabel)</code></div>
</div>
</td>
</tr>
<tr class="rowColor" id="i15">
<td class="colFirst"><code><a href="../../../java.base/java/math/BigDecimal.html" title="class in java.math">BigDecimal</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBigDecimal(java.lang.String)">getBigDecimal</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a
<code>java.math.BigDecimal</code> with full precision.</div>
</td>
</tr>
<tr class="altColor" id="i16">
<td class="colFirst"><code><a href="../../../java.base/java/math/BigDecimal.html" title="class in java.math">BigDecimal</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBigDecimal(java.lang.String,int)">getBigDecimal</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel,
int scale)</code></th>
<td class="colLast">
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="deprecationComment">Use <code>getBigDecimal(int columnIndex)</code>
or <code>getBigDecimal(String columnLabel)</code></div>
</div>
</td>
</tr>
<tr class="rowColor" id="i17">
<td class="colFirst"><code><a href="../../../java.base/java/io/InputStream.html" title="class in java.io">InputStream</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBinaryStream(int)">getBinaryStream</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a stream of
uninterpreted bytes.</div>
</td>
</tr>
<tr class="altColor" id="i18">
<td class="colFirst"><code><a href="../../../java.base/java/io/InputStream.html" title="class in java.io">InputStream</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBinaryStream(java.lang.String)">getBinaryStream</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a stream of uninterpreted
<code>byte</code>s.</div>
</td>
</tr>
<tr class="rowColor" id="i19">
<td class="colFirst"><code><a href="Blob.html" title="interface in java.sql">Blob</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBlob(int)">getBlob</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a <code>Blob</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i20">
<td class="colFirst"><code><a href="Blob.html" title="interface in java.sql">Blob</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBlob(java.lang.String)">getBlob</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a <code>Blob</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i21">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBoolean(int)">getBoolean</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>boolean</code> in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i22">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBoolean(java.lang.String)">getBoolean</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>boolean</code> in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i23">
<td class="colFirst"><code>byte</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getByte(int)">getByte</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>byte</code> in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i24">
<td class="colFirst"><code>byte</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getByte(java.lang.String)">getByte</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>byte</code> in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i25">
<td class="colFirst"><code>byte[]</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBytes(int)">getBytes</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>byte</code> array in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i26">
<td class="colFirst"><code>byte[]</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBytes(java.lang.String)">getBytes</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>byte</code> array in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i27">
<td class="colFirst"><code><a href="../../../java.base/java/io/Reader.html" title="class in java.io">Reader</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCharacterStream(int)">getCharacterStream</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a
<code>java.io.Reader</code> object.</div>
</td>
</tr>
<tr class="altColor" id="i28">
<td class="colFirst"><code><a href="../../../java.base/java/io/Reader.html" title="class in java.io">Reader</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCharacterStream(java.lang.String)">getCharacterStream</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a
<code>java.io.Reader</code> object.</div>
</td>
</tr>
<tr class="rowColor" id="i29">
<td class="colFirst"><code><a href="Clob.html" title="interface in java.sql">Clob</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getClob(int)">getClob</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a <code>Clob</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i30">
<td class="colFirst"><code><a href="Clob.html" title="interface in java.sql">Clob</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getClob(java.lang.String)">getClob</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a <code>Clob</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i31">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getConcurrency()">getConcurrency</a></span>()</code></th>
<td class="colLast">
<div class="block">Retrieves the concurrency mode of this <code>ResultSet</code> object.</div>
</td>
</tr>
<tr class="altColor" id="i32">
<td class="colFirst"><code><a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCursorName()">getCursorName</a></span>()</code></th>
<td class="colLast">
<div class="block">Retrieves the name of the SQL cursor used by this <code>ResultSet</code>
object.</div>
</td>
</tr>
<tr class="rowColor" id="i33">
<td class="colFirst"><code><a href="Date.html" title="class in java.sql">Date</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getDate(int)">getDate</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>java.sql.Date</code> object in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i34">
<td class="colFirst"><code><a href="Date.html" title="class in java.sql">Date</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getDate(int,java.util.Calendar)">getDate</a></span>​(int columnIndex,
<a href="../../../java.base/java/util/Calendar.html" title="class in java.util">Calendar</a> cal)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a <code>java.sql.Date</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i35">
<td class="colFirst"><code><a href="Date.html" title="class in java.sql">Date</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getDate(java.lang.String)">getDate</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>java.sql.Date</code> object in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i36">
<td class="colFirst"><code><a href="Date.html" title="class in java.sql">Date</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getDate(java.lang.String,java.util.Calendar)">getDate</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel,
<a href="../../../java.base/java/util/Calendar.html" title="class in java.util">Calendar</a> cal)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a <code>java.sql.Date</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i37">
<td class="colFirst"><code>double</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getDouble(int)">getDouble</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>double</code> in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i38">
<td class="colFirst"><code>double</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getDouble(java.lang.String)">getDouble</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>double</code> in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i39">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFetchDirection()">getFetchDirection</a></span>()</code></th>
<td class="colLast">
<div class="block">Retrieves the fetch direction for this
<code>ResultSet</code> object.</div>
</td>
</tr>
<tr class="altColor" id="i40">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFetchSize()">getFetchSize</a></span>()</code></th>
<td class="colLast">
<div class="block">Retrieves the fetch size for this
<code>ResultSet</code> object.</div>
</td>
</tr>
<tr class="rowColor" id="i41">
<td class="colFirst"><code>float</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFloat(int)">getFloat</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>float</code> in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i42">
<td class="colFirst"><code>float</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFloat(java.lang.String)">getFloat</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>float</code> in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i43">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getHoldability()">getHoldability</a></span>()</code></th>
<td class="colLast">
<div class="block">Retrieves the holdability of this <code>ResultSet</code> object</div>
</td>
</tr>
<tr class="altColor" id="i44">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getInt(int)">getInt</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
an <code>int</code> in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i45">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getInt(java.lang.String)">getInt</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
an <code>int</code> in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i46">
<td class="colFirst"><code>long</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getLong(int)">getLong</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>long</code> in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i47">
<td class="colFirst"><code>long</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getLong(java.lang.String)">getLong</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>long</code> in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i48">
<td class="colFirst"><code><a href="ResultSetMetaData.html" title="interface in java.sql">ResultSetMetaData</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMetaData()">getMetaData</a></span>()</code></th>
<td class="colLast">
<div class="block">Retrieves the number, types and properties of
this <code>ResultSet</code> object's columns.</div>
</td>
</tr>
<tr class="rowColor" id="i49">
<td class="colFirst"><code><a href="../../../java.base/java/io/Reader.html" title="class in java.io">Reader</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNCharacterStream(int)">getNCharacterStream</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a
<code>java.io.Reader</code> object.</div>
</td>
</tr>
<tr class="altColor" id="i50">
<td class="colFirst"><code><a href="../../../java.base/java/io/Reader.html" title="class in java.io">Reader</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNCharacterStream(java.lang.String)">getNCharacterStream</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a
<code>java.io.Reader</code> object.</div>
</td>
</tr>
<tr class="rowColor" id="i51">
<td class="colFirst"><code><a href="NClob.html" title="interface in java.sql">NClob</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNClob(int)">getNClob</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a <code>NClob</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i52">
<td class="colFirst"><code><a href="NClob.html" title="interface in java.sql">NClob</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNClob(java.lang.String)">getNClob</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as a <code>NClob</code> object
in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i53">
<td class="colFirst"><code><a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNString(int)">getNString</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>String</code> in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i54">
<td class="colFirst"><code><a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNString(java.lang.String)">getNString</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as
a <code>String</code> in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i55">
<td class="colFirst"><code><a href="../../../java.base/java/lang/Object.html" title="class in java.lang">Object</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getObject(int)">getObject</a></span>​(int columnIndex)</code></th>
<td class="colLast">
<div class="block">Gets the value of the designated column in the current row
of this <code>ResultSet</code> object as
an <code>Object</code> in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i56">
<td class="colFirst"><code><T> T</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getObject(int,java.lang.Class)">getObject</a></span>​(int columnIndex,
<a href="../../../java.base/java/lang/Class.html" title="class in java.lang">Class</a><T> type)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object and will convert from the
SQL type of the column to the requested Java data type, if the
conversion is supported.</div>
</td>
</tr>
<tr class="rowColor" id="i57">
<td class="colFirst"><code><a href="../../../java.base/java/lang/Object.html" title="class in java.lang">Object</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getObject(int,java.util.Map)">getObject</a></span>​(int columnIndex,
<a href="../../../java.base/java/util/Map.html" title="interface in java.util">Map</a><<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a>,​<a href="../../../java.base/java/lang/Class.html" title="class in java.lang">Class</a><?>> map)</code></th>
<td class="colLast">
<div class="block">Retrieves the value of the designated column in the current row
of this <code>ResultSet</code> object as an <code>Object</code>
in the Java programming language.</div>
</td>
</tr>
<tr class="altColor" id="i58">
<td class="colFirst"><code><a href="../../../java.base/java/lang/Object.html" title="class in java.lang">Object</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getObject(java.lang.String)">getObject</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel)</code></th>
<td class="colLast">
<div class="block">Gets the value of the designated column in the current row
of this <code>ResultSet</code> object as
an <code>Object</code> in the Java programming language.</div>
</td>
</tr>
<tr class="rowColor" id="i59">
<td class="colFirst"><code><T> T</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getObject(java.lang.String,java.lang.Class)">getObject</a></span>​(<a href="../../../java.base/java/lang/String.html" title="class in java.lang">String</a> columnLabel,
<a href="../../../java.base/java/lang/Class.html" title="class in java.lang">Class</a><T> type)</code></th>
<td class="colLast">