ahmetb / orman

lightweight and minimalist ORM for Java/Android. works with SQLite & MySQL. (not actively maintained)
Other
249 stars 47 forks source link

Support for Date fields #4

Closed ahmetb closed 13 years ago

ahmetb commented 13 years ago

Currently framework has no date type supports. Databases have different input and query result formats for date & date-time types.

Plan is to support only datetime types (which is java.sql.Date) and let every dbms have its own DateFormatter (or SimpleDataFormat) on both forward mapping and reverse mapping.

Tests should also be done.

ahmetb commented 13 years ago

Implemented but not tested, support to java.util.Date.