代码拉取完成,页面将自动刷新
一个简单的基于Android的Sqlite数据库的操作封装,它有如下的好处:
@Table(name="t_user")
public class UserModel {
@Table.Column(name="user_id",type=Column.TYPE_INTEGER,isPrimaryKey=true)
public Integer userId;
@Table.Column(name="user_name",type=Column.TYPE_STRING,isNull=false)
public String userName;
@Table.Column(name="born_date",type=Column.TYPE_TIMESTAMP)
public Date bornDate;
@Table.Column(name="pictrue",type=Column.TYPE_BLOB)
public byte[] pictrue;
@Table.Column(name="is_login",type=Column.TYPE_BOOLEAN)
public Boolean isLogin;
@Table.Column(name="weight",type=Column.TYPE_DOUBLE)
public Double weight;
}
SQLiteDatabase db = context.openOrCreateDatabase("test.db", Context.MODE_PRIVATE, null);
DbSqlite dbSqlite = new DbSqlite(db);
IBaseDao<UserModel> userDAO = DaoFactory.createGenericDao(dbSqlite, UserModel.class);
创建Table:
userDAO.createTable();
insert 一条记录:
UserModel user = new UserModel();
user.userName = "darcy";
user.isLogin = true;
user.weight = 60.5;
user.bornDate = new Date();
byte[] picture = {0x1,0x2,0x3,0x4};
user.pictrue = picture;
userDAO.insert(user);
update 记录:
UserModel user = new UserModel();
user.weight = 88.0;
userDAO.update(user, "user_name=?", "darcy");
查询结果:
//单条结果查询
UserModel user = userDAO.queryFirstRecord("user_name=?", "darcy");
//一般查询
List<UserModel> userList = userDAO.query("user_name=? and weight > ?", "darcy" , "60");
//分页查询
PagingList<UserModel> pagingList = userDAO.pagingQuery(null, null, 1, 3);
事务支持:
DBTransaction.transact(mDb, new DBTransaction.DBTransactionInterface() {
@Override
public void onTransact() {
// to do
}
};
更新表[只支持添加字段]:
@Table(name="t_user" , version=2) //修改表版本
public class UserModel {
//members above...
//new columns
@Table.Column(name="new_column_1",type=Column.TYPE_INTEGER)
public Integer newColumn;
@Table.Column(name="new_column_2",type=Column.TYPE_INTEGER)
public Integer newColumn2;
}
userDAO.updateTable();
Copyright 2016 yedaxia
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。