Hi guys,
Does anybody know if the methods getTimestamp(int columnIndex, Calendar cal)
and getTimestamp(String columnName, Calendar cal) are going to be implemented
in a future version? I am grateful that timestamp is now supported in 0.10.0
(thanks to the devs!!!) and for now I will create a workaround in our code, but
usually we call the getTimestamp methods with calendar object, so it would be
great if this could be supported as well.
Thanks,
Steffen
Code:
public Timestamp getTimestamp(int columnIndex, Calendar cal) throws
SQLException {
throw new SQLException("Method not supported");
}
public Timestamp getTimestamp(String columnName, Calendar cal) throws
SQLException {
throw new SQLException("Method not supported");
}