@@ -269,7 +269,7 @@ public InputStream getBinaryStream( int columnIndex ) throws SQLException {
269269 @ Override
270270 public String getString ( String columnLabel ) throws SQLException {
271271 int columnIndex = findColumn ( columnLabel );
272- return getValue ( columnIndex );
272+ return getString ( columnIndex );
273273 }
274274
275275 /**
@@ -278,7 +278,7 @@ public String getString( String columnLabel ) throws SQLException {
278278 @ Override
279279 public boolean getBoolean ( String columnLabel ) throws SQLException {
280280 int columnIndex = findColumn ( columnLabel );
281- return getValue ( columnIndex );
281+ return getBoolean ( columnIndex );
282282 }
283283
284284 /**
@@ -287,7 +287,7 @@ public boolean getBoolean( String columnLabel ) throws SQLException {
287287 @ Override
288288 public byte getByte ( String columnLabel ) throws SQLException {
289289 int columnIndex = findColumn ( columnLabel );
290- return getValue ( columnIndex );
290+ return getByte ( columnIndex );
291291 }
292292
293293 /**
@@ -296,7 +296,7 @@ public byte getByte( String columnLabel ) throws SQLException {
296296 @ Override
297297 public short getShort ( String columnLabel ) throws SQLException {
298298 int columnIndex = findColumn ( columnLabel );
299- return getValue ( columnIndex );
299+ return getShort ( columnIndex );
300300 }
301301
302302 /**
@@ -305,7 +305,7 @@ public short getShort( String columnLabel ) throws SQLException {
305305 @ Override
306306 public int getInt ( String columnLabel ) throws SQLException {
307307 int columnIndex = findColumn ( columnLabel );
308- return getValue ( columnIndex );
308+ return getInt ( columnIndex );
309309 }
310310
311311 /**
@@ -314,7 +314,7 @@ public int getInt( String columnLabel ) throws SQLException {
314314 @ Override
315315 public long getLong ( String columnLabel ) throws SQLException {
316316 int columnIndex = findColumn ( columnLabel );
317- return getValue ( columnIndex );
317+ return getLong ( columnIndex );
318318 }
319319
320320 /**
@@ -323,7 +323,7 @@ public long getLong( String columnLabel ) throws SQLException {
323323 @ Override
324324 public float getFloat ( String columnLabel ) throws SQLException {
325325 int columnIndex = findColumn ( columnLabel );
326- return getValue ( columnIndex );
326+ return getFloat ( columnIndex );
327327 }
328328
329329 /**
@@ -332,7 +332,7 @@ public float getFloat( String columnLabel ) throws SQLException {
332332 @ Override
333333 public double getDouble ( String columnLabel ) throws SQLException {
334334 int columnIndex = findColumn ( columnLabel );
335- return getValue ( columnIndex );
335+ return getDouble ( columnIndex );
336336 }
337337
338338 /**
@@ -350,7 +350,7 @@ public BigDecimal getBigDecimal( String columnLabel, int scale ) throws SQLExcep
350350 @ Override
351351 public byte [] getBytes ( String columnLabel ) throws SQLException {
352352 int columnIndex = findColumn ( columnLabel );
353- return getValue ( columnIndex );
353+ return getBytes ( columnIndex );
354354 }
355355
356356 /**
@@ -359,7 +359,7 @@ public byte[] getBytes( String columnLabel ) throws SQLException {
359359 @ Override
360360 public Date getDate ( String columnLabel ) throws SQLException {
361361 int columnIndex = findColumn ( columnLabel );
362- return getValue ( columnIndex );
362+ return getDate ( columnIndex );
363363 }
364364
365365 /**
@@ -368,7 +368,7 @@ public Date getDate( String columnLabel ) throws SQLException {
368368 @ Override
369369 public Time getTime ( String columnLabel ) throws SQLException {
370370 int columnIndex = findColumn ( columnLabel );
371- return getValue ( columnIndex );
371+ return getTime ( columnIndex );
372372 }
373373
374374 /**
@@ -377,7 +377,7 @@ public Time getTime( String columnLabel ) throws SQLException {
377377 @ Override
378378 public Timestamp getTimestamp ( String columnLabel ) throws SQLException {
379379 int columnIndex = findColumn ( columnLabel );
380- return getValue ( columnIndex );
380+ return getTimestamp ( columnIndex );
381381 }
382382
383383 /**
@@ -443,7 +443,7 @@ public Object getObject( int columnIndex ) throws SQLException {
443443 @ Override
444444 public Object getObject ( String columnLabel ) throws SQLException {
445445 int columnIndex = findColumn ( columnLabel );
446- return getValue ( columnIndex );
446+ return getObject ( columnIndex );
447447 }
448448
449449 /**
@@ -474,7 +474,7 @@ public Reader getCharacterStream( int columnIndex ) throws SQLException {
474474 @ Override
475475 public Reader getCharacterStream ( String columnLabel ) throws SQLException {
476476 int columnIndex = findColumn ( columnLabel );
477- return getValue ( columnIndex );
477+ return getCharacterStream ( columnIndex );
478478 }
479479
480480 /**
@@ -491,7 +491,7 @@ public BigDecimal getBigDecimal( int columnIndex ) throws SQLException {
491491 @ Override
492492 public BigDecimal getBigDecimal ( String columnLabel ) throws SQLException {
493493 int columnIndex = findColumn ( columnLabel );
494- return getValue ( columnIndex );
494+ return getBigDecimal ( columnIndex );
495495 }
496496
497497 /**
0 commit comments