Back to project page campus.
The source code is released under:
GNU General Public License
If you think the Android project campus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package lecho.app.campus.dao; /* w ww . j a va 2 s .c o m*/ 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 lecho.app.campus.dao.Faculty; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table FACULTY. */ public class FacultyDao extends AbstractDao<Faculty, Long> { public static final String TABLENAME = "FACULTY"; /** * Properties of entity Faculty.<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 ShortName = new Property(2, String.class, "shortName", false, "SHORT_NAME"); public final static Property FilterableName = new Property(3, String.class, "filterableName", false, "FILTERABLE_NAME"); }; private DaoSession daoSession; public FacultyDao(DaoConfig config) { super(config); } public FacultyDao(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 + "'FACULTY' (" + // "'_id' INTEGER PRIMARY KEY ," + // 0: id "'NAME' TEXT NOT NULL ," + // 1: name "'SHORT_NAME' TEXT NOT NULL ," + // 2: shortName "'FILTERABLE_NAME' TEXT NOT NULL );"); // 3: filterableName } /** Drops the underlying database table. */ public static void dropTable(SQLiteDatabase db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "'FACULTY'"; db.execSQL(sql); } /** @inheritdoc */ @Override protected void bindValues(SQLiteStatement stmt, Faculty entity) { stmt.clearBindings(); Long id = entity.getId(); if (id != null) { stmt.bindLong(1, id); } stmt.bindString(2, entity.getName()); stmt.bindString(3, entity.getShortName()); stmt.bindString(4, entity.getFilterableName()); } @Override protected void attachEntity(Faculty entity) { super.attachEntity(entity); entity.__setDaoSession(daoSession); } /** @inheritdoc */ @Override public Long readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); } /** @inheritdoc */ @Override public Faculty readEntity(Cursor cursor, int offset) { Faculty entity = new Faculty( // cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id cursor.getString(offset + 1), // name cursor.getString(offset + 2), // shortName cursor.getString(offset + 3) // filterableName ); return entity; } /** @inheritdoc */ @Override public void readEntity(Cursor cursor, Faculty entity, int offset) { entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setName(cursor.getString(offset + 1)); entity.setShortName(cursor.getString(offset + 2)); entity.setFilterableName(cursor.getString(offset + 3)); } /** @inheritdoc */ @Override protected Long updateKeyAfterInsert(Faculty entity, long rowId) { entity.setId(rowId); return rowId; } /** @inheritdoc */ @Override public Long getKey(Faculty entity) { if(entity != null) { return entity.getId(); } else { return null; } } /** @inheritdoc */ @Override protected boolean isEntityUpdateable() { return true; } }