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