package com.halzhang.android.examples.greendao3example.dao; import android.database.Cursor; import android.database.sqlite.SQLiteStatement; import org.greenrobot.greendao.AbstractDao; import org.greenrobot.greendao.Property; import org.greenrobot.greendao.internal.DaoConfig; import org.greenrobot.greendao.database.Database; import org.greenrobot.greendao.database.DatabaseStatement; import com.halzhang.android.examples.greendao3example.User; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table "USER". */ public class UserDao extends AbstractDao<User, Long> { public static final String TABLENAME = "USER"; /** * Properties of entity User.<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 Uid = new Property(1, long.class, "uid", false, "UID"); public final static Property Name = new Property(2, String.class, "name", false, "NAME"); public final static Property Age = new Property(3, int.class, "age", false, "AGE"); }; public UserDao(DaoConfig config) { super(config); } public UserDao(DaoConfig config, DaoSession daoSession) { super(config, daoSession); } /** Creates the underlying database table. */ public static void createTable(Database db, boolean ifNotExists) { String constraint = ifNotExists? "IF NOT EXISTS ": ""; db.execSQL("CREATE TABLE " + constraint + "\"USER\" (" + // "\"_id\" INTEGER PRIMARY KEY AUTOINCREMENT ," + // 0: id "\"UID\" INTEGER NOT NULL ," + // 1: uid "\"NAME\" TEXT," + // 2: name "\"AGE\" INTEGER NOT NULL );"); // 3: age } /** Drops the underlying database table. */ public static void dropTable(Database db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"USER\""; db.execSQL(sql); } @Override protected final void bindValues(DatabaseStatement stmt, User entity) { stmt.clearBindings(); Long id = entity.getId(); if (id != null) { stmt.bindLong(1, id); } stmt.bindLong(2, entity.getUid()); String name = entity.getName(); if (name != null) { stmt.bindString(3, name); } stmt.bindLong(4, entity.getAge()); } @Override protected final void bindValues(SQLiteStatement stmt, User entity) { stmt.clearBindings(); Long id = entity.getId(); if (id != null) { stmt.bindLong(1, id); } stmt.bindLong(2, entity.getUid()); String name = entity.getName(); if (name != null) { stmt.bindString(3, name); } stmt.bindLong(4, entity.getAge()); } @Override public Long readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); } @Override public User readEntity(Cursor cursor, int offset) { User entity = new User( // cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id cursor.getLong(offset + 1), // uid cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2), // name cursor.getInt(offset + 3) // age ); return entity; } @Override public void readEntity(Cursor cursor, User entity, int offset) { entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setUid(cursor.getLong(offset + 1)); entity.setName(cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2)); entity.setAge(cursor.getInt(offset + 3)); } @Override protected final Long updateKeyAfterInsert(User entity, long rowId) { entity.setId(rowId); return rowId; } @Override public Long getKey(User entity) { if(entity != null) { return entity.getId(); } else { return null; } } @Override protected final boolean isEntityUpdateable() { return true; } }