android对象数据库使用范例

在项目中对数据库的操作是最基本的,对数据库的封装也有很多方法,其中比较推荐的是对象数据库的封装比较赞,基本原理是每个表持有一个单例,使用非常方便。如下提供一个范例,项目需要依赖一个对象数据库的lib.


public class AccountDbProvider {



EntityManager<AccountEntity> entityManager;


public AccountDbProvider() {
entityManager = EntityManagerFactory.getInstance(AppApplication.getContext(), 2, "recipe", null, null).getEntityManager(AccountEntity.class, "recipe_account_tbl");
}


/**
* 信息保存
*/
public void saveOrUpdate(AccountEntity account) {
if (account == null) {
return;
}

entityManager.saveOrUpdate(account);

}


/**
* 信息提取
*/
public AccountEntity getAccount(String accountName) {
List<AccountEntity> accounts = entityManager.findAll();
if (accounts == null || accounts.size() == 0) {
return null;
}
for (AccountEntity account : accounts) {
if (account.getAccount().equals(accountName)) {
return account;
}
}
return null;
}


/**
* 信息提取
*/
public AccountEntity findById(String account) {

com.tcl.framework.db.sqlite.Selector selector = com.tcl.framework.db.sqlite.Selector.create();
WhereBuilder wherebuilder = WhereBuilder.create();
wherebuilder.and("account", "=", account);
selector.where(wherebuilder);
return entityManager.findFirst(selector);
}
/**
* 删除账户
*/
public void deleteAll() {
entityManager.deleteAll();
}

}

你可能感兴趣的:(android对象数据库使用范例)