コード例 #1
0
ファイル: SCR20557.java プロジェクト: Rokko11/idea-community
 public Date getDate(String columnName, Calendar cal) throws SQLException {
   return myResultSet.getDate(columnName, cal);
 }
コード例 #2
0
ファイル: SCR20557.java プロジェクト: Rokko11/idea-community
 public Date getDate(String columnName) throws SQLException {
   return myResultSet.getDate(columnName);
 }
コード例 #3
0
ファイル: SCR20557.java プロジェクト: Rokko11/idea-community
 public Date getDate(int columnIndex, Calendar cal) throws SQLException {
   return myResultSet.getDate(columnIndex, cal);
 }
コード例 #4
0
ファイル: SCR20557.java プロジェクト: Rokko11/idea-community
 public Date getDate(int columnIndex) throws SQLException {
   return myResultSet.getDate(columnIndex);
 }