Beispiel #1
0
 public Date getDate(String columnName, Calendar cal) throws SQLException {
   return myResultSet.getDate(columnName, cal);
 }
Beispiel #2
0
 public Date getDate(String columnName) throws SQLException {
   return myResultSet.getDate(columnName);
 }
Beispiel #3
0
 public Date getDate(int columnIndex, Calendar cal) throws SQLException {
   return myResultSet.getDate(columnIndex, cal);
 }
Beispiel #4
0
 public Date getDate(int columnIndex) throws SQLException {
   return myResultSet.getDate(columnIndex);
 }