Non dovresti mai fare affidamento sul driver per convertire implicitamente una data in un particolare formato di stringa:il formato è un dettaglio di implementazione del driver. Dovresti gestire tu stesso la conversione.
Questo può essere fatto sia a livello Java:
/* executing the statement, etc. - snipped for clarity */
DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
while (rs.next()) {
Date date = rs.getTimestamp(1);
System.out.println("As String :"+ formatter.format(date));
}
O dalla query stessa:
/* Setting up the connection, etc. - snipped for clarity */
String sql = "SELECT TO_CHAR(date_type, 'yyyy-mm-dd hh24:mi:ss') FROM emp";
ResultSet rs = psmt.executeQuery(sql);
while (rs.next()) {
String dateString = rs.getString(1);
System.out.println("As String :" + dateString);
}