public Date getDate(String columnName, Calendar cal) throws SQLException { return myResultSet.getDate(columnName, cal); }
public Date getDate(String columnName) throws SQLException { return myResultSet.getDate(columnName); }
public Date getDate(int columnIndex, Calendar cal) throws SQLException { return myResultSet.getDate(columnIndex, cal); }
public Date getDate(int columnIndex) throws SQLException { return myResultSet.getDate(columnIndex); }