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
|
/*
* Copyright 2006-2012 Amazon Technologies, Inc. or its affiliates.
* Amazon, Amazon.com and Carbonado are trademarks or registered trademarks
* of Amazon Technologies, Inc. or its affiliates. All rights reserved.
*
* 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 com.amazon.carbonado.repo.jdbc;
import java.math.BigDecimal;
import java.util.Calendar;
import java.sql.*;
import org.apache.commons.logging.Log;
/**
* CallableStatement returned by LoggingConnection;
*
* @author Brian S O'Neill
*/
class LoggingCallableStatement extends LoggingPreparedStatement implements CallableStatement {
LoggingCallableStatement(Log log, Connection con, CallableStatement ps, String sql) {
super(log, con, ps, sql);
}
public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException {
cs().registerOutParameter(parameterIndex, sqlType);
}
public void registerOutParameter(int parameterIndex, int sqlType, int scale)
throws SQLException
{
cs().registerOutParameter(parameterIndex, sqlType, scale);
}
public boolean wasNull() throws SQLException {
return cs().wasNull();
}
public String getString(int parameterIndex) throws SQLException {
return cs().getString(parameterIndex);
}
public boolean getBoolean(int parameterIndex) throws SQLException {
return cs().getBoolean(parameterIndex);
}
public byte getByte(int parameterIndex) throws SQLException {
return cs().getByte(parameterIndex);
}
public short getShort(int parameterIndex) throws SQLException {
return cs().getShort(parameterIndex);
}
public int getInt(int parameterIndex) throws SQLException {
return cs().getInt(parameterIndex);
}
public long getLong(int parameterIndex) throws SQLException {
return cs().getLong(parameterIndex);
}
public float getFloat(int parameterIndex) throws SQLException {
return cs().getFloat(parameterIndex);
}
public double getDouble(int parameterIndex) throws SQLException {
return cs().getDouble(parameterIndex);
}
@Deprecated
public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException {
return cs().getBigDecimal(parameterIndex, scale);
}
public byte[] getBytes(int parameterIndex) throws SQLException {
return cs().getBytes(parameterIndex);
}
public java.sql.Date getDate(int parameterIndex) throws SQLException {
return cs().getDate(parameterIndex);
}
public java.sql.Time getTime(int parameterIndex) throws SQLException {
return cs().getTime(parameterIndex);
}
public java.sql.Timestamp getTimestamp(int parameterIndex)
throws SQLException
{
return cs().getTimestamp(parameterIndex);
}
public Object getObject(int parameterIndex) throws SQLException {
return cs().getObject(parameterIndex);
}
public BigDecimal getBigDecimal(int parameterIndex) throws SQLException {
return cs().getBigDecimal(parameterIndex);
}
public Object getObject(int i, java.util.Map<String,Class<?>> map) throws SQLException {
return cs().getObject(i, map);
}
public Ref getRef(int i) throws SQLException {
return cs().getRef(i);
}
public Blob getBlob(int i) throws SQLException {
return cs().getBlob(i);
}
public Clob getClob(int i) throws SQLException {
return cs().getClob(i);
}
public Array getArray(int i) throws SQLException {
return cs().getArray(i);
}
public java.sql.Date getDate(int parameterIndex, Calendar cal) throws SQLException {
return cs().getDate(parameterIndex, cal);
}
public java.sql.Time getTime(int parameterIndex, Calendar cal) throws SQLException {
return cs().getTime(parameterIndex, cal);
}
public java.sql.Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException {
return cs().getTimestamp(parameterIndex, cal);
}
public void registerOutParameter(int paramIndex, int sqlType, String typeName)
throws SQLException
{
cs().registerOutParameter(paramIndex, sqlType, typeName);
}
public void registerOutParameter(String parameterName, int sqlType) throws SQLException {
cs().registerOutParameter(parameterName, sqlType);
}
public void registerOutParameter(String parameterName, int sqlType, int scale)
throws SQLException
{
cs().registerOutParameter(parameterName, sqlType, scale);
}
public void registerOutParameter(String parameterName, int sqlType, String typeName)
throws SQLException
{
cs().registerOutParameter(parameterName, sqlType, typeName);
}
public java.net.URL getURL(int parameterIndex) throws SQLException {
return cs().getURL(parameterIndex);
}
public void setURL(String parameterName, java.net.URL val) throws SQLException {
cs().setURL(parameterName, val);
}
public void setNull(String parameterName, int sqlType) throws SQLException {
cs().setNull(parameterName, sqlType);
}
public void setBoolean(String parameterName, boolean x) throws SQLException {
cs().setBoolean(parameterName, x);
}
public void setByte(String parameterName, byte x) throws SQLException {
cs().setByte(parameterName, x);
}
public void setShort(String parameterName, short x) throws SQLException {
cs().setShort(parameterName, x);
}
public void setInt(String parameterName, int x) throws SQLException {
cs().setInt(parameterName, x);
}
public void setLong(String parameterName, long x) throws SQLException {
cs().setLong(parameterName, x);
}
public void setFloat(String parameterName, float x) throws SQLException {
cs().setFloat(parameterName, x);
}
public void setDouble(String parameterName, double x) throws SQLException {
cs().setDouble(parameterName, x);
}
public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException {
cs().setBigDecimal(parameterName, x);
}
public void setString(String parameterName, String x) throws SQLException {
cs().setString(parameterName, x);
}
public void setBytes(String parameterName, byte x[]) throws SQLException {
cs().setBytes(parameterName, x);
}
public void setDate(String parameterName, java.sql.Date x) throws SQLException {
cs().setDate(parameterName, x);
}
public void setTime(String parameterName, java.sql.Time x) throws SQLException {
cs().setTime(parameterName, x);
}
public void setTimestamp(String parameterName, java.sql.Timestamp x) throws SQLException {
cs().setTimestamp(parameterName, x);
}
public void setAsciiStream(String parameterName, java.io.InputStream x, int length)
throws SQLException
{
cs().setAsciiStream(parameterName, x, length);
}
public void setBinaryStream(String parameterName, java.io.InputStream x,
int length)
throws SQLException
{
cs().setBinaryStream(parameterName, x, length);
}
public void setObject(String parameterName, Object x, int targetSqlType, int scale)
throws SQLException
{
cs().setObject(parameterName, x, targetSqlType, scale);
}
public void setObject(String parameterName, Object x, int targetSqlType)
throws SQLException
{
cs().setObject(parameterName, x, targetSqlType);
}
public void setObject(String parameterName, Object x) throws SQLException {
cs().setObject(parameterName, x);
}
public void setCharacterStream(String parameterName,
java.io.Reader reader,
int length)
throws SQLException
{
cs().setCharacterStream(parameterName, reader, length);
}
public void setDate(String parameterName, java.sql.Date x, Calendar cal)
throws SQLException
{
cs().setDate(parameterName, x, cal);
}
public void setTime(String parameterName, java.sql.Time x, Calendar cal)
throws SQLException
{
cs().setTime(parameterName, x, cal);
}
public void setTimestamp(String parameterName, java.sql.Timestamp x, Calendar cal)
throws SQLException
{
cs().setTimestamp(parameterName, x, cal);
}
public void setNull(String parameterName, int sqlType, String typeName)
throws SQLException
{
cs().setNull(parameterName, sqlType, typeName);
}
public String getString(String parameterName) throws SQLException {
return cs().getString(parameterName);
}
public boolean getBoolean(String parameterName) throws SQLException {
return cs().getBoolean(parameterName);
}
public byte getByte(String parameterName) throws SQLException {
return cs().getByte(parameterName);
}
public short getShort(String parameterName) throws SQLException {
return cs().getShort(parameterName);
}
public int getInt(String parameterName) throws SQLException {
return cs().getInt(parameterName);
}
public long getLong(String parameterName) throws SQLException {
return cs().getLong(parameterName);
}
public float getFloat(String parameterName) throws SQLException {
return cs().getFloat(parameterName);
}
public double getDouble(String parameterName) throws SQLException {
return cs().getDouble(parameterName);
}
public byte[] getBytes(String parameterName) throws SQLException {
return cs().getBytes(parameterName);
}
public java.sql.Date getDate(String parameterName) throws SQLException {
return cs().getDate(parameterName);
}
public java.sql.Time getTime(String parameterName) throws SQLException {
return cs().getTime(parameterName);
}
public java.sql.Timestamp getTimestamp(String parameterName) throws SQLException {
return cs().getTimestamp(parameterName);
}
public Object getObject(String parameterName) throws SQLException {
return cs().getObject(parameterName);
}
public BigDecimal getBigDecimal(String parameterName) throws SQLException {
return cs().getBigDecimal(parameterName);
}
public Object getObject(String parameterName, java.util.Map<String,Class<?>> map)
throws SQLException
{
return cs().getObject(parameterName, map);
}
public Ref getRef(String parameterName) throws SQLException {
return cs().getRef(parameterName);
}
public Blob getBlob(String parameterName) throws SQLException {
return cs().getBlob(parameterName);
}
public Clob getClob(String parameterName) throws SQLException {
return cs().getClob(parameterName);
}
public Array getArray(String parameterName) throws SQLException {
return cs().getArray(parameterName);
}
public java.sql.Date getDate(String parameterName, Calendar cal) throws SQLException {
return cs().getDate(parameterName, cal);
}
public java.sql.Time getTime(String parameterName, Calendar cal) throws SQLException {
return cs().getTime(parameterName, cal);
}
public java.sql.Timestamp getTimestamp(String parameterName, Calendar cal)
throws SQLException
{
return cs().getTimestamp(parameterName, cal);
}
public java.net.URL getURL(String parameterName) throws SQLException {
return cs().getURL(parameterName);
}
/**
* @since 1.2
*/
public RowId getRowId(int parameterIndex) throws SQLException {
return cs().getRowId(parameterIndex);
}
/**
* @since 1.2
*/
public RowId getRowId(String parameterName) throws SQLException {
return cs().getRowId(parameterName);
}
/**
* @since 1.2
*/
public void setRowId(String parameterName, RowId x) throws SQLException {
cs().setRowId(parameterName, x);
}
/**
* @since 1.2
*/
public void setNString(String parameterName, String value) throws SQLException {
cs().setNString(parameterName, value);
}
/**
* @since 1.2
*/
public void setNCharacterStream(String parameterName, java.io.Reader value, long length)
throws SQLException
{
cs().setNCharacterStream(parameterName, value, length);
}
/**
* @since 1.2
*/
public void setNClob(String parameterName, NClob value) throws SQLException {
cs().setNClob(parameterName, value);
}
/**
* @since 1.2
*/
public void setClob(String parameterName, java.io.Reader reader, long length)
throws SQLException
{
cs().setClob(parameterName, reader, length);
}
/**
* @since 1.2
*/
public void setBlob(String parameterName, java.io.InputStream inputStream, long length)
throws SQLException
{
cs().setBlob(parameterName, inputStream, length);
}
/**
* @since 1.2
*/
public void setNClob(String parameterName, java.io.Reader reader, long length)
throws SQLException
{
cs().setNClob(parameterName, reader, length);
}
/**
* @since 1.2
*/
public NClob getNClob (int parameterIndex) throws SQLException {
return cs().getNClob(parameterIndex);
}
/**
* @since 1.2
*/
public NClob getNClob (String parameterName) throws SQLException {
return cs().getNClob(parameterName);
}
/**
* @since 1.2
*/
public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
cs().setSQLXML(parameterName, xmlObject);
}
/**
* @since 1.2
*/
public SQLXML getSQLXML(int parameterIndex) throws SQLException {
return cs().getSQLXML(parameterIndex);
}
/**
* @since 1.2
*/
public SQLXML getSQLXML(String parameterName) throws SQLException {
return cs().getSQLXML(parameterName);
}
/**
* @since 1.2
*/
public String getNString(int parameterIndex) throws SQLException {
return cs().getNString(parameterIndex);
}
/**
* @since 1.2
*/
public String getNString(String parameterName) throws SQLException {
return cs().getNString(parameterName);
}
/**
* @since 1.2
*/
public java.io.Reader getNCharacterStream(int parameterIndex) throws SQLException {
return cs().getNCharacterStream(parameterIndex);
}
/**
* @since 1.2
*/
public java.io.Reader getNCharacterStream(String parameterName) throws SQLException {
return cs().getNCharacterStream(parameterName);
}
/**
* @since 1.2
*/
public java.io.Reader getCharacterStream(int parameterIndex) throws SQLException {
return cs().getCharacterStream(parameterIndex);
}
/**
* @since 1.2
*/
public java.io.Reader getCharacterStream(String parameterName) throws SQLException {
return cs().getCharacterStream(parameterName);
}
/**
* @since 1.2
*/
public void setBlob(String parameterName, Blob x) throws SQLException {
cs().setBlob(parameterName, x);
}
/**
* @since 1.2
*/
public void setClob(String parameterName, Clob x) throws SQLException {
cs().setClob(parameterName, x);
}
/**
* @since 1.2
*/
public void setAsciiStream(String parameterName, java.io.InputStream x, long length)
throws SQLException
{
cs().setAsciiStream(parameterName, x, length);
}
/**
* @since 1.2
*/
public void setBinaryStream(String parameterName, java.io.InputStream x, long length)
throws SQLException
{
cs().setBinaryStream(parameterName, x, length);
}
/**
* @since 1.2
*/
public void setCharacterStream(String parameterName,
java.io.Reader reader,
long length)
throws SQLException
{
cs().setCharacterStream(parameterName, reader, length);
}
/**
* @since 1.2
*/
public void setAsciiStream(String parameterName, java.io.InputStream x)
throws SQLException
{
cs().setAsciiStream(parameterName, x);
}
/**
* @since 1.2
*/
public void setBinaryStream(String parameterName, java.io.InputStream x)
throws SQLException
{
cs().setBinaryStream(parameterName, x);
}
/**
* @since 1.2
*/
public void setCharacterStream(String parameterName, java.io.Reader reader)
throws SQLException
{
cs().setCharacterStream(parameterName, reader);
}
/**
* @since 1.2
*/
public void setNCharacterStream(String parameterName, java.io.Reader value)
throws SQLException
{
cs().setNCharacterStream(parameterName, value);
}
/**
* @since 1.2
*/
public void setClob(String parameterName, java.io.Reader reader) throws SQLException {
cs().setClob(parameterName, reader);
}
/**
* @since 1.2
*/
public void setBlob(String parameterName, java.io.InputStream inputStream)
throws SQLException
{
cs().setBlob(parameterName, inputStream);
}
/**
* @since 1.2
*/
public void setNClob(String parameterName, java.io.Reader reader)
throws SQLException
{
cs().setNClob(parameterName, reader);
}
public <T> T getObject(int parameterIndex, Class<T> type) throws SQLException {
return cs().getObject(parameterIndex, type);
}
public <T> T getObject(String parameterName, Class<T> type) throws SQLException {
return cs().getObject(parameterName, type);
}
private CallableStatement cs() {
return (CallableStatement) mStatement;
}
}
|