Hi, > If you are trying to represent a birthday you should use the DATE type. > DATE type is not dependent on timezone.
The JDBC API uses java.sql.Time and java.sql.Date, and both extend java.util.Date. So this is a problem, even if it might not be a problem within H2 itself. See also http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6772689 In SQL, there are two data types: timestamps without timezone, and timezone with timezone. H2 only really only supports timestamps without timezone so far. Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
