UserInfoDao.java
3.71 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
package com.huaheng.xiangdianwms.wmsgreendao;
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.huaheng.robot.login.UserInfo;
// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT.
/**
* DAO for table "USER_INFO".
*/
public class UserInfoDao extends AbstractDao<UserInfo, Long> {
public static final String TABLENAME = "USER_INFO";
/**
* Properties of entity UserInfo.<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 Password = new Property(2, String.class, "password", false, "PASSWORD");
}
public UserInfoDao(DaoConfig config) {
super(config);
}
public UserInfoDao(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_INFO\" (" + //
"\"_id\" INTEGER PRIMARY KEY NOT NULL ," + // 0: _id
"\"NAME\" TEXT NOT NULL ," + // 1: name
"\"PASSWORD\" TEXT NOT NULL );"); // 2: password
}
/** Drops the underlying database table. */
public static void dropTable(Database db, boolean ifExists) {
String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"USER_INFO\"";
db.execSQL(sql);
}
@Override
protected final void bindValues(DatabaseStatement stmt, UserInfo entity) {
stmt.clearBindings();
stmt.bindLong(1, entity.get_id());
stmt.bindString(2, entity.getName());
stmt.bindString(3, entity.getPassword());
}
@Override
protected final void bindValues(SQLiteStatement stmt, UserInfo entity) {
stmt.clearBindings();
stmt.bindLong(1, entity.get_id());
stmt.bindString(2, entity.getName());
stmt.bindString(3, entity.getPassword());
}
@Override
public Long readKey(Cursor cursor, int offset) {
return cursor.getLong(offset + 0);
}
@Override
public UserInfo readEntity(Cursor cursor, int offset) {
UserInfo entity = new UserInfo( //
cursor.getLong(offset + 0), // _id
cursor.getString(offset + 1), // name
cursor.getString(offset + 2) // password
);
return entity;
}
@Override
public void readEntity(Cursor cursor, UserInfo entity, int offset) {
entity.set_id(cursor.getLong(offset + 0));
entity.setName(cursor.getString(offset + 1));
entity.setPassword(cursor.getString(offset + 2));
}
@Override
protected final Long updateKeyAfterInsert(UserInfo entity, long rowId) {
entity.set_id(rowId);
return rowId;
}
@Override
public Long getKey(UserInfo entity) {
if(entity != null) {
return entity.get_id();
} else {
return null;
}
}
@Override
public boolean hasKey(UserInfo entity) {
throw new UnsupportedOperationException("Unsupported for entities with a non-null key");
}
@Override
protected final boolean isEntityUpdateable() {
return true;
}
}