orm Lite的使用

1.什么是ORM Lite

orm Lite(Object Relationanl Mapping Lite)是一种用于持久化保存java对象的框架,相对于标准的ORM包来说。

2. Demo

●声明实体类

只有加了@DatabaseField的属性才会被认为是表的一个字段

@DatabaseTable(tableName = "accounts")
public class Account{
    @DatabaseField(id = true)
    private String name;

    @DatabaseField(canBeNull = false)
    private String password;
    Account() {
        // all persisted classes must define a no-arg constructor with at least package visibility
    }

    public Account(String name, String password) {
        this.name = name;
        this.password = password;
    }

    public String getPassword() {
        return password;
    }
}

●操作数据库类

第一次创建数据库时,会调用onCreate()方法然后创建表

public class DBOpenHelper extends OrmLiteSqliteOpenHelper {

	public DBOpenHelper(Context context) {
		super(context, "pjq.db", null, 2);
	}

    @Override
    public void onCreate(SQLiteDatabase sqLiteDatabase, ConnectionSource connectionSource) {
        try {
            TableUtils.createTable(connectionSource,Account.class);
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }

    @Override
    public void onUpgrade(SQLiteDatabase sqLiteDatabase, ConnectionSource connectionSource, int i, int i2) {

    }

}
●添加对象

        Account account = new Account("pjq3","333");
        mAccountDao.create(account);
  
●读取对象
mAccountDao.queryForId("pjq");

●修改对象

mAccountDao.update(account);




源码下载地址:http://download.csdn.net/detail/panjq882288/5802637

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值