forked from scouter-project/scouter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWrResultSet.java
More file actions
809 lines (612 loc) · 24.9 KB
/
WrResultSet.java
File metadata and controls
809 lines (612 loc) · 24.9 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
/*
* Copyright 2015 the original author or authors.
* @https://github.com/scouter-project/scouter
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package scouter.jdbc;
import java.sql.SQLException;
import java.util.Map;
import scouter.agent.trace.TraceSQL;
public class WrResultSet implements java.sql.ResultSet {
java.sql.ResultSet inner;
public WrResultSet(java.sql.ResultSet inner) {
this.inner = inner;
}
final public java.lang.Object getObject(java.lang.String a0, Map<String, Class<?>> a1) throws java.sql.SQLException {
return this.inner.getObject(a0, a1);
}
final public java.lang.Object getObject(int a0, Map<String, Class<?>> a1) throws java.sql.SQLException {
return this.inner.getObject(a0, a1);
}
final public java.lang.Object getObject(int a0) throws java.sql.SQLException {
return this.inner.getObject(a0);
}
final public java.lang.Object getObject(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getObject(a0);
}
final public boolean getBoolean(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getBoolean(a0);
}
final public boolean getBoolean(int a0) throws java.sql.SQLException {
return this.inner.getBoolean(a0);
}
final public byte getByte(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getByte(a0);
}
final public byte getByte(int a0) throws java.sql.SQLException {
return this.inner.getByte(a0);
}
final public short getShort(int a0) throws java.sql.SQLException {
return this.inner.getShort(a0);
}
final public short getShort(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getShort(a0);
}
final public int getInt(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getInt(a0);
}
final public int getInt(int a0) throws java.sql.SQLException {
return this.inner.getInt(a0);
}
final public long getLong(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getLong(a0);
}
final public long getLong(int a0) throws java.sql.SQLException {
return this.inner.getLong(a0);
}
final public float getFloat(int a0) throws java.sql.SQLException {
return this.inner.getFloat(a0);
}
final public float getFloat(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getFloat(a0);
}
final public double getDouble(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getDouble(a0);
}
final public double getDouble(int a0) throws java.sql.SQLException {
return this.inner.getDouble(a0);
}
final public byte[] getBytes(int a0) throws java.sql.SQLException {
return this.inner.getBytes(a0);
}
final public byte[] getBytes(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getBytes(a0);
}
final public java.sql.Array getArray(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getArray(a0);
}
final public java.sql.Array getArray(int a0) throws java.sql.SQLException {
return this.inner.getArray(a0);
}
final public boolean next() throws java.sql.SQLException {
return TraceSQL.rsnext(this.inner.next());
}
final public java.net.URL getURL(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getURL(a0);
}
final public java.net.URL getURL(int a0) throws java.sql.SQLException {
return this.inner.getURL(a0);
}
final public void close() throws java.sql.SQLException {
TraceSQL.rsclose(this);
this.inner.close();
}
final public int getType() throws java.sql.SQLException {
return this.inner.getType();
}
final public boolean previous() throws java.sql.SQLException {
return this.inner.previous();
}
final public java.sql.Ref getRef(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getRef(a0);
}
final public java.sql.Ref getRef(int a0) throws java.sql.SQLException {
return this.inner.getRef(a0);
}
final public java.lang.String getString(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getString(a0);
}
final public java.lang.String getString(int a0) throws java.sql.SQLException {
return this.inner.getString(a0);
}
final public java.sql.Time getTime(java.lang.String a0, java.util.Calendar a1) throws java.sql.SQLException {
return this.inner.getTime(a0, a1);
}
final public java.sql.Time getTime(int a0, java.util.Calendar a1) throws java.sql.SQLException {
return this.inner.getTime(a0, a1);
}
final public java.sql.Time getTime(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getTime(a0);
}
final public java.sql.Time getTime(int a0) throws java.sql.SQLException {
return this.inner.getTime(a0);
}
final public java.sql.Date getDate(int a0, java.util.Calendar a1) throws java.sql.SQLException {
return this.inner.getDate(a0, a1);
}
final public java.sql.Date getDate(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getDate(a0);
}
final public java.sql.Date getDate(java.lang.String a0, java.util.Calendar a1) throws java.sql.SQLException {
return this.inner.getDate(a0, a1);
}
final public java.sql.Date getDate(int a0) throws java.sql.SQLException {
return this.inner.getDate(a0);
}
final public boolean first() throws java.sql.SQLException {
return this.inner.first();
}
final public boolean last() throws java.sql.SQLException {
return this.inner.last();
}
final public boolean wasNull() throws java.sql.SQLException {
return this.inner.wasNull();
}
final public java.math.BigDecimal getBigDecimal(int a0, int a1) throws java.sql.SQLException {
return this.inner.getBigDecimal(a0, a1);
}
final public java.math.BigDecimal getBigDecimal(java.lang.String a0, int a1) throws java.sql.SQLException {
return this.inner.getBigDecimal(a0, a1);
}
final public java.math.BigDecimal getBigDecimal(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getBigDecimal(a0);
}
final public java.math.BigDecimal getBigDecimal(int a0) throws java.sql.SQLException {
return this.inner.getBigDecimal(a0);
}
final public java.sql.Timestamp getTimestamp(int a0, java.util.Calendar a1) throws java.sql.SQLException {
return this.inner.getTimestamp(a0, a1);
}
final public java.sql.Timestamp getTimestamp(java.lang.String a0, java.util.Calendar a1)
throws java.sql.SQLException {
return this.inner.getTimestamp(a0, a1);
}
final public java.sql.Timestamp getTimestamp(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getTimestamp(a0);
}
final public java.sql.Timestamp getTimestamp(int a0) throws java.sql.SQLException {
return this.inner.getTimestamp(a0);
}
final public java.io.InputStream getAsciiStream(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getAsciiStream(a0);
}
final public java.io.InputStream getAsciiStream(int a0) throws java.sql.SQLException {
return this.inner.getAsciiStream(a0);
}
final public java.io.InputStream getUnicodeStream(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getUnicodeStream(a0);
}
final public java.io.InputStream getUnicodeStream(int a0) throws java.sql.SQLException {
return this.inner.getUnicodeStream(a0);
}
final public java.io.InputStream getBinaryStream(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getBinaryStream(a0);
}
final public java.io.InputStream getBinaryStream(int a0) throws java.sql.SQLException {
return this.inner.getBinaryStream(a0);
}
final public java.sql.SQLWarning getWarnings() throws java.sql.SQLException {
return this.inner.getWarnings();
}
final public void clearWarnings() throws java.sql.SQLException {
this.inner.clearWarnings();
}
final public java.lang.String getCursorName() throws java.sql.SQLException {
return this.inner.getCursorName();
}
final public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException {
return this.inner.getMetaData();
}
final public int findColumn(java.lang.String a0) throws java.sql.SQLException {
return this.inner.findColumn(a0);
}
final public java.io.Reader getCharacterStream(int a0) throws java.sql.SQLException {
return this.inner.getCharacterStream(a0);
}
final public java.io.Reader getCharacterStream(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getCharacterStream(a0);
}
final public boolean isBeforeFirst() throws java.sql.SQLException {
return this.inner.isBeforeFirst();
}
final public boolean isAfterLast() throws java.sql.SQLException {
return this.inner.isAfterLast();
}
final public boolean isFirst() throws java.sql.SQLException {
return this.inner.isFirst();
}
final public boolean isLast() throws java.sql.SQLException {
return this.inner.isLast();
}
final public void beforeFirst() throws java.sql.SQLException {
this.inner.beforeFirst();
}
final public void afterLast() throws java.sql.SQLException {
this.inner.afterLast();
}
final public int getRow() throws java.sql.SQLException {
return this.inner.getRow();
}
final public boolean absolute(int a0) throws java.sql.SQLException {
return this.inner.absolute(a0);
}
final public boolean relative(int a0) throws java.sql.SQLException {
return this.inner.relative(a0);
}
final public void setFetchDirection(int a0) throws java.sql.SQLException {
this.inner.setFetchDirection(a0);
}
final public int getFetchDirection() throws java.sql.SQLException {
return this.inner.getFetchDirection();
}
final public void setFetchSize(int a0) throws java.sql.SQLException {
this.inner.setFetchSize(a0);
}
final public int getFetchSize() throws java.sql.SQLException {
return this.inner.getFetchSize();
}
final public int getConcurrency() throws java.sql.SQLException {
return this.inner.getConcurrency();
}
final public boolean rowUpdated() throws java.sql.SQLException {
return this.inner.rowUpdated();
}
final public boolean rowInserted() throws java.sql.SQLException {
return this.inner.rowInserted();
}
final public boolean rowDeleted() throws java.sql.SQLException {
return this.inner.rowDeleted();
}
final public void updateNull(java.lang.String a0) throws java.sql.SQLException {
this.inner.updateNull(a0);
}
final public void updateNull(int a0) throws java.sql.SQLException {
this.inner.updateNull(a0);
}
final public void updateBoolean(java.lang.String a0, boolean a1) throws java.sql.SQLException {
this.inner.updateBoolean(a0, a1);
}
final public void updateBoolean(int a0, boolean a1) throws java.sql.SQLException {
this.inner.updateBoolean(a0, a1);
}
final public void updateByte(int a0, byte a1) throws java.sql.SQLException {
this.inner.updateByte(a0, a1);
}
final public void updateByte(java.lang.String a0, byte a1) throws java.sql.SQLException {
this.inner.updateByte(a0, a1);
}
final public void updateShort(java.lang.String a0, short a1) throws java.sql.SQLException {
this.inner.updateShort(a0, a1);
}
final public void updateShort(int a0, short a1) throws java.sql.SQLException {
this.inner.updateShort(a0, a1);
}
final public void updateInt(int a0, int a1) throws java.sql.SQLException {
this.inner.updateInt(a0, a1);
}
final public void updateInt(java.lang.String a0, int a1) throws java.sql.SQLException {
this.inner.updateInt(a0, a1);
}
final public void updateLong(int a0, long a1) throws java.sql.SQLException {
this.inner.updateLong(a0, a1);
}
final public void updateLong(java.lang.String a0, long a1) throws java.sql.SQLException {
this.inner.updateLong(a0, a1);
}
final public void updateFloat(int a0, float a1) throws java.sql.SQLException {
this.inner.updateFloat(a0, a1);
}
final public void updateFloat(java.lang.String a0, float a1) throws java.sql.SQLException {
this.inner.updateFloat(a0, a1);
}
final public void updateDouble(java.lang.String a0, double a1) throws java.sql.SQLException {
this.inner.updateDouble(a0, a1);
}
final public void updateDouble(int a0, double a1) throws java.sql.SQLException {
this.inner.updateDouble(a0, a1);
}
final public void updateBigDecimal(java.lang.String a0, java.math.BigDecimal a1) throws java.sql.SQLException {
this.inner.updateBigDecimal(a0, a1);
}
final public void updateBigDecimal(int a0, java.math.BigDecimal a1) throws java.sql.SQLException {
this.inner.updateBigDecimal(a0, a1);
}
final public void updateString(java.lang.String a0, java.lang.String a1) throws java.sql.SQLException {
this.inner.updateString(a0, a1);
}
final public void updateString(int a0, java.lang.String a1) throws java.sql.SQLException {
this.inner.updateString(a0, a1);
}
final public void updateBytes(java.lang.String a0, byte[] a1) throws java.sql.SQLException {
this.inner.updateBytes(a0, a1);
}
final public void updateBytes(int a0, byte[] a1) throws java.sql.SQLException {
this.inner.updateBytes(a0, a1);
}
final public void updateDate(java.lang.String a0, java.sql.Date a1) throws java.sql.SQLException {
this.inner.updateDate(a0, a1);
}
final public void updateDate(int a0, java.sql.Date a1) throws java.sql.SQLException {
this.inner.updateDate(a0, a1);
}
final public void updateTime(int a0, java.sql.Time a1) throws java.sql.SQLException {
this.inner.updateTime(a0, a1);
}
final public void updateTime(java.lang.String a0, java.sql.Time a1) throws java.sql.SQLException {
this.inner.updateTime(a0, a1);
}
final public void updateTimestamp(int a0, java.sql.Timestamp a1) throws java.sql.SQLException {
this.inner.updateTimestamp(a0, a1);
}
final public void updateTimestamp(java.lang.String a0, java.sql.Timestamp a1) throws java.sql.SQLException {
this.inner.updateTimestamp(a0, a1);
}
final public void updateAsciiStream(int a0, java.io.InputStream a1) throws java.sql.SQLException {
this.inner.updateAsciiStream(a0, a1);
}
final public void updateAsciiStream(int a0, java.io.InputStream a1, long a2) throws java.sql.SQLException {
this.inner.updateAsciiStream(a0, a1, a2);
}
final public void updateAsciiStream(java.lang.String a0, java.io.InputStream a1, long a2)
throws java.sql.SQLException {
this.inner.updateAsciiStream(a0, a1, a2);
}
final public void updateAsciiStream(int a0, java.io.InputStream a1, int a2) throws java.sql.SQLException {
this.inner.updateAsciiStream(a0, a1, a2);
}
final public void updateAsciiStream(java.lang.String a0, java.io.InputStream a1, int a2)
throws java.sql.SQLException {
this.inner.updateAsciiStream(a0, a1, a2);
}
final public void updateAsciiStream(java.lang.String a0, java.io.InputStream a1) throws java.sql.SQLException {
this.inner.updateAsciiStream(a0, a1);
}
final public void updateBinaryStream(java.lang.String a0, java.io.InputStream a1, long a2)
throws java.sql.SQLException {
this.inner.updateBinaryStream(a0, a1, a2);
}
final public void updateBinaryStream(java.lang.String a0, java.io.InputStream a1) throws java.sql.SQLException {
this.inner.updateBinaryStream(a0, a1);
}
final public void updateBinaryStream(int a0, java.io.InputStream a1, int a2) throws java.sql.SQLException {
this.inner.updateBinaryStream(a0, a1, a2);
}
final public void updateBinaryStream(java.lang.String a0, java.io.InputStream a1, int a2)
throws java.sql.SQLException {
this.inner.updateBinaryStream(a0, a1, a2);
}
final public void updateBinaryStream(int a0, java.io.InputStream a1, long a2) throws java.sql.SQLException {
this.inner.updateBinaryStream(a0, a1, a2);
}
final public void updateBinaryStream(int a0, java.io.InputStream a1) throws java.sql.SQLException {
this.inner.updateBinaryStream(a0, a1);
}
final public void updateCharacterStream(int a0, java.io.Reader a1, long a2) throws java.sql.SQLException {
this.inner.updateCharacterStream(a0, a1, a2);
}
final public void updateCharacterStream(java.lang.String a0, java.io.Reader a1) throws java.sql.SQLException {
this.inner.updateCharacterStream(a0, a1);
}
final public void updateCharacterStream(java.lang.String a0, java.io.Reader a1, int a2)
throws java.sql.SQLException {
this.inner.updateCharacterStream(a0, a1, a2);
}
final public void updateCharacterStream(java.lang.String a0, java.io.Reader a1, long a2)
throws java.sql.SQLException {
this.inner.updateCharacterStream(a0, a1, a2);
}
final public void updateCharacterStream(int a0, java.io.Reader a1) throws java.sql.SQLException {
this.inner.updateCharacterStream(a0, a1);
}
final public void updateCharacterStream(int a0, java.io.Reader a1, int a2) throws java.sql.SQLException {
this.inner.updateCharacterStream(a0, a1, a2);
}
final public void updateObject(int a0, java.lang.Object a1, int a2) throws java.sql.SQLException {
this.inner.updateObject(a0, a1, a2);
}
final public void updateObject(int a0, java.lang.Object a1) throws java.sql.SQLException {
this.inner.updateObject(a0, a1);
}
final public void updateObject(java.lang.String a0, java.lang.Object a1, int a2) throws java.sql.SQLException {
this.inner.updateObject(a0, a1, a2);
}
final public void updateObject(java.lang.String a0, java.lang.Object a1) throws java.sql.SQLException {
this.inner.updateObject(a0, a1);
}
final public void insertRow() throws java.sql.SQLException {
this.inner.insertRow();
}
final public void updateRow() throws java.sql.SQLException {
this.inner.updateRow();
}
final public void deleteRow() throws java.sql.SQLException {
this.inner.deleteRow();
}
final public void refreshRow() throws java.sql.SQLException {
this.inner.refreshRow();
}
final public void cancelRowUpdates() throws java.sql.SQLException {
this.inner.cancelRowUpdates();
}
final public void moveToInsertRow() throws java.sql.SQLException {
this.inner.moveToInsertRow();
}
final public void moveToCurrentRow() throws java.sql.SQLException {
this.inner.moveToCurrentRow();
}
final public java.sql.Statement getStatement() throws java.sql.SQLException {
return this.inner.getStatement();
}
final public java.sql.Blob getBlob(int a0) throws java.sql.SQLException {
return this.inner.getBlob(a0);
}
final public java.sql.Blob getBlob(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getBlob(a0);
}
final public java.sql.Clob getClob(int a0) throws java.sql.SQLException {
return this.inner.getClob(a0);
}
final public java.sql.Clob getClob(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getClob(a0);
}
final public void updateRef(java.lang.String a0, java.sql.Ref a1) throws java.sql.SQLException {
this.inner.updateRef(a0, a1);
}
final public void updateRef(int a0, java.sql.Ref a1) throws java.sql.SQLException {
this.inner.updateRef(a0, a1);
}
final public void updateBlob(java.lang.String a0, java.io.InputStream a1, long a2) throws java.sql.SQLException {
this.inner.updateBlob(a0, a1, a2);
}
final public void updateBlob(int a0, java.io.InputStream a1, long a2) throws java.sql.SQLException {
this.inner.updateBlob(a0, a1, a2);
}
final public void updateBlob(java.lang.String a0, java.sql.Blob a1) throws java.sql.SQLException {
this.inner.updateBlob(a0, a1);
}
final public void updateBlob(int a0, java.io.InputStream a1) throws java.sql.SQLException {
this.inner.updateBlob(a0, a1);
}
final public void updateBlob(int a0, java.sql.Blob a1) throws java.sql.SQLException {
this.inner.updateBlob(a0, a1);
}
final public void updateBlob(java.lang.String a0, java.io.InputStream a1) throws java.sql.SQLException {
this.inner.updateBlob(a0, a1);
}
final public void updateClob(int a0, java.io.Reader a1) throws java.sql.SQLException {
this.inner.updateClob(a0, a1);
}
final public void updateClob(java.lang.String a0, java.sql.Clob a1) throws java.sql.SQLException {
this.inner.updateClob(a0, a1);
}
final public void updateClob(java.lang.String a0, java.io.Reader a1) throws java.sql.SQLException {
this.inner.updateClob(a0, a1);
}
final public void updateClob(int a0, java.io.Reader a1, long a2) throws java.sql.SQLException {
this.inner.updateClob(a0, a1, a2);
}
final public void updateClob(java.lang.String a0, java.io.Reader a1, long a2) throws java.sql.SQLException {
this.inner.updateClob(a0, a1, a2);
}
final public void updateClob(int a0, java.sql.Clob a1) throws java.sql.SQLException {
this.inner.updateClob(a0, a1);
}
final public void updateArray(java.lang.String a0, java.sql.Array a1) throws java.sql.SQLException {
this.inner.updateArray(a0, a1);
}
final public void updateArray(int a0, java.sql.Array a1) throws java.sql.SQLException {
this.inner.updateArray(a0, a1);
}
final public java.sql.RowId getRowId(int a0) throws java.sql.SQLException {
return this.inner.getRowId(a0);
}
final public java.sql.RowId getRowId(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getRowId(a0);
}
final public void updateRowId(int a0, java.sql.RowId a1) throws java.sql.SQLException {
this.inner.updateRowId(a0, a1);
}
final public void updateRowId(java.lang.String a0, java.sql.RowId a1) throws java.sql.SQLException {
this.inner.updateRowId(a0, a1);
}
final public int getHoldability() throws java.sql.SQLException {
return this.inner.getHoldability();
}
final public boolean isClosed() throws java.sql.SQLException {
return this.inner.isClosed();
}
final public void updateNString(int a0, java.lang.String a1) throws java.sql.SQLException {
this.inner.updateNString(a0, a1);
}
final public void updateNString(java.lang.String a0, java.lang.String a1) throws java.sql.SQLException {
this.inner.updateNString(a0, a1);
}
final public void updateNClob(java.lang.String a0, java.io.Reader a1, long a2) throws java.sql.SQLException {
this.inner.updateNClob(a0, a1, a2);
}
final public void updateNClob(java.lang.String a0, java.sql.NClob a1) throws java.sql.SQLException {
this.inner.updateNClob(a0, a1);
}
final public void updateNClob(java.lang.String a0, java.io.Reader a1) throws java.sql.SQLException {
this.inner.updateNClob(a0, a1);
}
final public void updateNClob(int a0, java.io.Reader a1) throws java.sql.SQLException {
this.inner.updateNClob(a0, a1);
}
final public void updateNClob(int a0, java.io.Reader a1, long a2) throws java.sql.SQLException {
this.inner.updateNClob(a0, a1, a2);
}
final public void updateNClob(int a0, java.sql.NClob a1) throws java.sql.SQLException {
this.inner.updateNClob(a0, a1);
}
final public java.sql.NClob getNClob(int a0) throws java.sql.SQLException {
return this.inner.getNClob(a0);
}
final public java.sql.NClob getNClob(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getNClob(a0);
}
final public java.sql.SQLXML getSQLXML(int a0) throws java.sql.SQLException {
return this.inner.getSQLXML(a0);
}
final public java.sql.SQLXML getSQLXML(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getSQLXML(a0);
}
final public void updateSQLXML(java.lang.String a0, java.sql.SQLXML a1) throws java.sql.SQLException {
this.inner.updateSQLXML(a0, a1);
}
final public void updateSQLXML(int a0, java.sql.SQLXML a1) throws java.sql.SQLException {
this.inner.updateSQLXML(a0, a1);
}
final public java.lang.String getNString(int a0) throws java.sql.SQLException {
return this.inner.getNString(a0);
}
final public java.lang.String getNString(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getNString(a0);
}
final public java.io.Reader getNCharacterStream(int a0) throws java.sql.SQLException {
return this.inner.getNCharacterStream(a0);
}
final public java.io.Reader getNCharacterStream(java.lang.String a0) throws java.sql.SQLException {
return this.inner.getNCharacterStream(a0);
}
final public void updateNCharacterStream(int a0, java.io.Reader a1, long a2) throws java.sql.SQLException {
this.inner.updateNCharacterStream(a0, a1, a2);
}
final public void updateNCharacterStream(int a0, java.io.Reader a1) throws java.sql.SQLException {
this.inner.updateNCharacterStream(a0, a1);
}
final public void updateNCharacterStream(java.lang.String a0, java.io.Reader a1, long a2)
throws java.sql.SQLException {
this.inner.updateNCharacterStream(a0, a1, a2);
}
final public void updateNCharacterStream(java.lang.String a0, java.io.Reader a1) throws java.sql.SQLException {
this.inner.updateNCharacterStream(a0, a1);
}
public <T> T getObject(int columnIndex, Class<T> type) throws SQLException {
// TODO Auto-generated method stub
return null;
}
public <T> T getObject(String columnLabel, Class<T> type) throws SQLException {
// TODO Auto-generated method stub
return null;
}
public <T> T unwrap(Class<T> iface) throws SQLException {
// TODO Auto-generated method stub
return null;
}
public boolean isWrapperFor(Class<?> iface) throws SQLException {
// TODO Auto-generated method stub
return false;
}
}