package com.gzsll.hupu.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; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table IMAGE_CACHE. */ public class ImageCacheDao extends AbstractDao<ImageCache, Long> { public static final String TABLENAME = "IMAGE_CACHE"; /** * Properties of entity ImageCache.<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 Url = new Property(1, String.class, "url", false, "URL"); public final static Property Path = new Property(2, String.class, "path", false, "PATH"); } ; public ImageCacheDao(DaoConfig config) { super(config); } public ImageCacheDao(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 + "'IMAGE_CACHE' (" + // "'_id' INTEGER PRIMARY KEY ," + // 0: id "'URL' TEXT," + // 1: url "'PATH' TEXT);"); // 2: path } /** * Drops the underlying database table. */ public static void dropTable(SQLiteDatabase db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "'IMAGE_CACHE'"; db.execSQL(sql); } /** * @inheritdoc */ @Override protected void bindValues(SQLiteStatement stmt, ImageCache entity) { stmt.clearBindings(); Long id = entity.getId(); if (id != null) { stmt.bindLong(1, id); } String url = entity.getUrl(); if (url != null) { stmt.bindString(2, url); } String path = entity.getPath(); if (path != null) { stmt.bindString(3, path); } } /** * @inheritdoc */ @Override public Long readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); } /** * @inheritdoc */ @Override public ImageCache readEntity(Cursor cursor, int offset) { ImageCache entity = new ImageCache( // cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // url cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2) // path ); return entity; } /** * @inheritdoc */ @Override public void readEntity(Cursor cursor, ImageCache entity, int offset) { entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setUrl(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1)); entity.setPath(cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2)); } /** * @inheritdoc */ @Override protected Long updateKeyAfterInsert(ImageCache entity, long rowId) { entity.setId(rowId); return rowId; } /** * @inheritdoc */ @Override public Long getKey(ImageCache entity) { if (entity != null) { return entity.getId(); } else { return null; } } /** * @inheritdoc */ @Override protected boolean isEntityUpdateable() { return true; } }