Exemplo n.º 1
0
 public Date selectNow(Connection con) throws SQLException {
   Statement st = null;
   ResultSet rs = null;
   try {
     st = con.createStatement();
     rs = st.executeQuery("SELECT now()");
     rs.next();
     return JDBCUtils.getDate(rs, rs.getMetaData().getColumnName(1));
   } finally {
     cleanup(null, st, rs);
   }
 }