Skip to content
Andrew Horishnii edited this page Dec 1, 2015 · 3 revisions

###About LeftDB is a simple SQLite ORM solution for Android that maps objects to SQLite databases.

###Supported data types

  • boolean and wrapper (Boolean.class) - save as INTEGER;
  • short and wrapper (Short.class) - save as INTEGER;
  • int and wrapper (Integer.class) - save as INTEGER;
  • long and wrapper (Long.class) - save as INTEGER;
  • float and wrapper (Float.class) - save as REAL;
  • double and wrapper (Double.class) - save as REAL;
  • String.class - save as TEXT;
  • BigDecimal.class - save as TEXT;
  • Calendar.class - save as INTEGER;
  • Date.class - save as INTEGER;
  • Object implements Serializable - save as BLOB;
  • Object with @ColumnDAO annotation - save as TEXT;

Clone this wiki locally