package sun.bob.leela.db; 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 sun.bob.leela.db.Category; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table CATEGORY. */ public class CategoryDao extends AbstractDao<Category, Long> { public static final String TABLENAME = "CATEGORY"; /** * Properties of entity Category.<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 Name = new Property(1, String.class, "name", false, "NAME"); public final static Property Type = new Property(2, int.class, "type", false, "TYPE"); public final static Property Icon = new Property(3, String.class, "icon", false, "ICON"); }; public CategoryDao(DaoConfig config) { super(config); } public CategoryDao(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 + "'CATEGORY' (" + // "'_id' INTEGER PRIMARY KEY ," + // 0: id "'NAME' TEXT NOT NULL ," + // 1: name "'TYPE' INTEGER NOT NULL ," + // 2: type "'ICON' TEXT NOT NULL );"); // 3: icon } /** Drops the underlying database table. */ public static void dropTable(SQLiteDatabase db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "'CATEGORY'"; db.execSQL(sql); } /** @inheritdoc */ @Override protected void bindValues(SQLiteStatement stmt, Category entity) { stmt.clearBindings(); Long id = entity.getId(); if (id != null) { stmt.bindLong(1, id); } stmt.bindString(2, entity.getName()); stmt.bindLong(3, entity.getType()); stmt.bindString(4, entity.getIcon()); } /** @inheritdoc */ @Override public Long readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); } /** @inheritdoc */ @Override public Category readEntity(Cursor cursor, int offset) { Category entity = new Category( // cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id cursor.getString(offset + 1), // name cursor.getInt(offset + 2), // type cursor.getString(offset + 3) // icon ); return entity; } /** @inheritdoc */ @Override public void readEntity(Cursor cursor, Category entity, int offset) { entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setName(cursor.getString(offset + 1)); entity.setType(cursor.getInt(offset + 2)); entity.setIcon(cursor.getString(offset + 3)); } /** @inheritdoc */ @Override protected Long updateKeyAfterInsert(Category entity, long rowId) { entity.setId(rowId); return rowId; } /** @inheritdoc */ @Override public Long getKey(Category entity) { if(entity != null) { return entity.getId(); } else { return null; } } /** @inheritdoc */ @Override protected boolean isEntityUpdateable() { return true; } }