FavoriteDao.java
4.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package com.cmcc.migutvtwo.dao;
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 com.cmcc.migutvtwo.dao.Favorite;
// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT.
/**
* DAO for table FAVORITE.
*/
public class FavoriteDao extends AbstractDao<Favorite, String> {
public static final String TABLENAME = "FAVORITE";
/**
* Properties of entity Favorite.<br/>
* Can be used for QueryBuilder and for referencing column names.
*/
public static class Properties {
public final static Property Id = new Property(0, String.class, "id", true, "ID");
public final static Property ContentName = new Property(1, String.class, "contentName", false, "CONTENT_NAME");
public final static Property LiveName = new Property(2, String.class, "liveName", false, "LIVE_NAME");
public final static Property ContentPic = new Property(3, String.class, "contentPic", false, "CONTENT_PIC");
};
public FavoriteDao(DaoConfig config) {
super(config);
}
public FavoriteDao(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 + "'FAVORITE' (" + //
"'ID' TEXT PRIMARY KEY NOT NULL ," + // 0: id
"'CONTENT_NAME' TEXT," + // 1: contentName
"'LIVE_NAME' TEXT," + // 2: liveName
"'CONTENT_PIC' TEXT);"); // 3: contentPic
}
/** Drops the underlying database table. */
public static void dropTable(SQLiteDatabase db, boolean ifExists) {
String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "'FAVORITE'";
db.execSQL(sql);
}
/** @inheritdoc */
@Override
protected void bindValues(SQLiteStatement stmt, Favorite entity) {
stmt.clearBindings();
String id = entity.getId();
if (id != null) {
stmt.bindString(1, id);
}
String contentName = entity.getContentName();
if (contentName != null) {
stmt.bindString(2, contentName);
}
String liveName = entity.getLiveName();
if (liveName != null) {
stmt.bindString(3, liveName);
}
String contentPic = entity.getContentPic();
if (contentPic != null) {
stmt.bindString(4, contentPic);
}
}
/** @inheritdoc */
@Override
public String readKey(Cursor cursor, int offset) {
return cursor.isNull(offset + 0) ? null : cursor.getString(offset + 0);
}
/** @inheritdoc */
@Override
public Favorite readEntity(Cursor cursor, int offset) {
Favorite entity = new Favorite( //
cursor.isNull(offset + 0) ? null : cursor.getString(offset + 0), // id
cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // contentName
cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2), // liveName
cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3) // contentPic
);
return entity;
}
/** @inheritdoc */
@Override
public void readEntity(Cursor cursor, Favorite entity, int offset) {
entity.setId(cursor.isNull(offset + 0) ? null : cursor.getString(offset + 0));
entity.setContentName(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1));
entity.setLiveName(cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2));
entity.setContentPic(cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3));
}
/** @inheritdoc */
@Override
protected String updateKeyAfterInsert(Favorite entity, long rowId) {
return entity.getId();
}
/** @inheritdoc */
@Override
public String getKey(Favorite entity) {
if(entity != null) {
return entity.getId();
} else {
return null;
}
}
/** @inheritdoc */
@Override
protected boolean isEntityUpdateable() {
return true;
}
}