package de.luhmer.owncloudnewsreader.database.model; 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; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table "FOLDER". */ public class FolderDao extends AbstractDao<Folder, Long> { public static final String TABLENAME = "FOLDER"; /** * Properties of entity Folder.<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 Label = new Property(1, String.class, "label", false, "LABEL"); }; private DaoSession daoSession; public FolderDao(DaoConfig config) { super(config); } public FolderDao(DaoConfig config, DaoSession daoSession) { super(config, daoSession); this.daoSession = 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 + "\"FOLDER\" (" + // "\"_id\" INTEGER PRIMARY KEY NOT NULL ," + // 0: id "\"LABEL\" TEXT NOT NULL );"); // 1: label } /** Drops the underlying database table. */ public static void dropTable(SQLiteDatabase db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"FOLDER\""; db.execSQL(sql); } /** @inheritdoc */ @Override protected void bindValues(SQLiteStatement stmt, Folder entity) { stmt.clearBindings(); stmt.bindLong(1, entity.getId()); stmt.bindString(2, entity.getLabel()); } @Override protected void attachEntity(Folder entity) { super.attachEntity(entity); entity.__setDaoSession(daoSession); } /** @inheritdoc */ @Override public Long readKey(Cursor cursor, int offset) { return cursor.getLong(offset + 0); } /** @inheritdoc */ @Override public Folder readEntity(Cursor cursor, int offset) { Folder entity = new Folder( // cursor.getLong(offset + 0), // id cursor.getString(offset + 1) // label ); return entity; } /** @inheritdoc */ @Override public void readEntity(Cursor cursor, Folder entity, int offset) { entity.setId(cursor.getLong(offset + 0)); entity.setLabel(cursor.getString(offset + 1)); } /** @inheritdoc */ @Override protected Long updateKeyAfterInsert(Folder entity, long rowId) { entity.setId(rowId); return rowId; } /** @inheritdoc */ @Override public Long getKey(Folder entity) { if(entity != null) { return entity.getId(); } else { return null; } } /** @inheritdoc */ @Override protected boolean isEntityUpdateable() { return true; } }