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