package com.ping.greendao.gen;
|
|
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 cn.flightfeather.thirdapp.bean.entity.MediaFileCache;
|
|
// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT.
|
/**
|
* DAO for table "MEDIA_FILE_CACHE".
|
*/
|
public class MediaFileCacheDao extends AbstractDao<MediaFileCache, Long> {
|
|
public static final String TABLENAME = "MEDIA_FILE_CACHE";
|
|
/**
|
* Properties of entity MediaFileCache.<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 final static Property ThumbnailPath = new Property(3, String.class, "thumbnailPath", false, "THUMBNAIL_PATH");
|
}
|
|
|
public MediaFileCacheDao(DaoConfig config) {
|
super(config);
|
}
|
|
public MediaFileCacheDao(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 + "\"MEDIA_FILE_CACHE\" (" + //
|
"\"_id\" INTEGER PRIMARY KEY AUTOINCREMENT ," + // 0: id
|
"\"URL\" TEXT," + // 1: url
|
"\"PATH\" TEXT," + // 2: path
|
"\"THUMBNAIL_PATH\" TEXT);"); // 3: thumbnailPath
|
}
|
|
/** Drops the underlying database table. */
|
public static void dropTable(Database db, boolean ifExists) {
|
String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"MEDIA_FILE_CACHE\"";
|
db.execSQL(sql);
|
}
|
|
@Override
|
protected final void bindValues(DatabaseStatement stmt, MediaFileCache 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);
|
}
|
|
String thumbnailPath = entity.getThumbnailPath();
|
if (thumbnailPath != null) {
|
stmt.bindString(4, thumbnailPath);
|
}
|
}
|
|
@Override
|
protected final void bindValues(SQLiteStatement stmt, MediaFileCache 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);
|
}
|
|
String thumbnailPath = entity.getThumbnailPath();
|
if (thumbnailPath != null) {
|
stmt.bindString(4, thumbnailPath);
|
}
|
}
|
|
@Override
|
public Long readKey(Cursor cursor, int offset) {
|
return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0);
|
}
|
|
@Override
|
public MediaFileCache readEntity(Cursor cursor, int offset) {
|
MediaFileCache entity = new MediaFileCache( //
|
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
|
cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3) // thumbnailPath
|
);
|
return entity;
|
}
|
|
@Override
|
public void readEntity(Cursor cursor, MediaFileCache 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));
|
entity.setThumbnailPath(cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3));
|
}
|
|
@Override
|
protected final Long updateKeyAfterInsert(MediaFileCache entity, long rowId) {
|
entity.setId(rowId);
|
return rowId;
|
}
|
|
@Override
|
public Long getKey(MediaFileCache entity) {
|
if(entity != null) {
|
return entity.getId();
|
} else {
|
return null;
|
}
|
}
|
|
@Override
|
public boolean hasKey(MediaFileCache entity) {
|
return entity.getId() != null;
|
}
|
|
@Override
|
protected final boolean isEntityUpdateable() {
|
return true;
|
}
|
|
}
|