package greendao; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteStatement; import de.greenrobot.dao.AbstractDao; import de.greenrobot.dao.Property; import de.greenrobot.dao.internal.DaoConfig; import greendao.Memo; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table MEMO. */ public class MemoDao extends AbstractDao<Memo, Long> { public static final String TABLENAME = "MEMO"; /** * Properties of entity Memo.<br/> * Can be used for QueryBuilder and for referencing column names. */ public static class Properties { public final static Property Id = new Property(0, Long.class, "id", true, "_id"); public final static Property Text = new Property(1, String.class, "text", false, "TEXT"); public final static Property Date = new Property(2, Long.class, "date", false, "DATE"); }; public MemoDao(DaoConfig config) { super(config); } public MemoDao(DaoConfig config, DaoSession daoSession) { super(config, daoSession); } /** Creates the underlying database table. */ public static void createTable(SQLiteDatabase db, boolean ifNotExists) { String constraint = ifNotExists? "IF NOT EXISTS ": ""; db.execSQL("CREATE TABLE " + constraint + "'MEMO' (" + // "'_id' INTEGER PRIMARY KEY ," + // 0: id "'TEXT' TEXT," + // 1: text "'DATE' INTEGER);"); // 2: date } /** Drops the underlying database table. */ public static void dropTable(SQLiteDatabase db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "'MEMO'"; db.execSQL(sql); } /** @inheritdoc */ @Override protected void bindValues(SQLiteStatement stmt, Memo entity) { stmt.clearBindings(); Long id = entity.getId(); if (id != null) { stmt.bindLong(1, id); } String text = entity.getText(); if (text != null) { stmt.bindString(2, text); } Long date = entity.getDate(); if (date != null) { stmt.bindLong(3, date); } } /** @inheritdoc */ @Override public Long readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); } /** @inheritdoc */ @Override public Memo readEntity(Cursor cursor, int offset) { Memo entity = new Memo( // cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // text cursor.isNull(offset + 2) ? null : cursor.getLong(offset + 2) // date ); return entity; } /** @inheritdoc */ @Override public void readEntity(Cursor cursor, Memo entity, int offset) { entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setText(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1)); entity.setDate(cursor.isNull(offset + 2) ? null : cursor.getLong(offset + 2)); } /** @inheritdoc */ @Override protected Long updateKeyAfterInsert(Memo entity, long rowId) { entity.setId(rowId); return rowId; } /** @inheritdoc */ @Override public Long getKey(Memo entity) { if(entity != null) { return entity.getId(); } else { return null; } } /** @inheritdoc */ @Override protected boolean isEntityUpdateable() { return true; } }