第一步:导入架包
1、将orm的两个支持包放入project视图下的你的工程的lib目录里(这两个JAR包网上都有,GitHub上最新)
2、添加依赖:在file文件目录下的project structure里选择你的APP,选择depedence目录
点击加号选择第二个library depedence选择lib目录下点击选择添加依赖
3、导入JAR包成功后两个jar文件是可以点开的,这就表明添加成功
第二步:使用ormList创建数据库;
1、首先要生成一个存放你各种属性的一个属性类,在类的开始添加注解
表明这是一张表,名字叫做cardImg
然后每条属性都应添加注解,表明是表单中的每一列
到这里属性类就算完美的建成了,次数省略了每条属性的get与set方法以及有参和无参构造方法
2、然后就要创建数据库了,这里与基本的SQList数据库的创建方法也没有什么大样,这里只附上代码,大家自己领悟
public class DataBaseHelper extends OrmLiteSqliteOpenHelper {private static final String DB_NAME="biying.db";private static final int DB_VERSON=1;private DataBaseHelper(Context mContext){super(mContext,DB_NAME,null,DB_VERSON); }/** * 基本单例模式: * 1、先把构造函数私有化* 2、对外提供一个静态方法* 3、在方法中判断如果已经存在就不再创建,如果不存在再创建* 这样保证永远只有一个DataBaseHelper对象* 4、为了线程安全,需要在方法前提供一个线程安全关键字synchronized * 如果一个调用时,另一个就不允许调用*/private static DataBaseHelper dataBaseHelper;public synchronized static DataBaseHelper getInstance(Context mContext){if (dataBaseHelper == null) {dataBaseHelper = new DataBaseHelper(mContext); }return dataBaseHelper; } @Overridepublic void onCreate(SQLiteDatabase sqLiteDatabase, ConnectionSource connectionSource) {//创建表try {//CardImgTableUtils.createTableIfNotExists(connectionSource, CardImg.class); } catch (SQLException e) { e.printStackTrace(); } } @Overridepublic void onUpgrade(SQLiteDatabase sqLiteDatabase, ConnectionSource connectionSource, int i, int i1) {//删除表try { TableUtils.dropTable(connectionSource,CardImg.class,true); } catch (SQLException e) { e.printStackTrace(); } } }
3、创建好属性类以及创建好了数据库之后,就要根据属性类来专门写一个针对于此属性类的一个数据库操作对象了,
大家一定要记住,在使用orm的时候最好就是一个表单对应一个数据库操作对象,这样方便操作也不会混淆,这里就只附上代码,大家自己领悟。
package com.jereh.biyingapplication.dao; import android.content.Context; import com.j256.ormlite.dao.Dao;import com.j256.ormlite.stmt.DeleteBuilder;import com.jereh.biyingapplication.db.DataBaseHelper;import com.jereh.biyingapplication.entity.CardImg;import com.jereh.biyingapplication.entity.Images; import java.sql.SQLException;import java.util.List; /** * Created by zhangdi on 2016/8/31. */public class CardImgDao {private Dao<CardImg,Integer> cardImgDao;public CardImgDao(Context mContext){ DataBaseHelper dataBaseHelper = DataBaseHelper.getInstance(mContext);try {cardImgDao = dataBaseHelper.getDao(CardImg.class); } catch (SQLException e) { e.printStackTrace(); } } /** * 添加一条数据,一个对象* @param cardImg* @return*/public long addCardImg(CardImg cardImg){int id =0;try { id = cardImgDao.create(cardImg); } catch (SQLException e) { e.printStackTrace(); }return id; } public void addAll(List<CardImg> images){for (CardImg img:images){ addCardImg(img); } }/** * 查询表中所有属性* @return 表的集合*/public List<CardImg> findAll(){try {return cardImgDao.queryForAll(); } catch (SQLException e) { e.printStackTrace(); }return null; }/** * 根据对象删除某条数据* @param cardImg*/public void delete(CardImg cardImg){ DeleteBuilder deleteBuilder = cardImgDao.deleteBuilder();try { deleteBuilder.where().eq("img",cardImg.getImg()); deleteBuilder.delete(); } catch (SQLException e) { e.printStackTrace(); } } /** * 删除所有数据* @param images*/public void removeAll(List<CardImg> images){for (CardImg img:images){ delete(img); } }}
4、至此使用orm创建数据库的方法基本上算是圆满成功了,在实体类中需要调用的时候只需要把数据库操作对象即你写的
那个dao给new出来即可通过数据库操作对象来对数据库中的这张表单实现增删改查等一系列的操作了。
关于ormlite的使用就介绍到这里,希望对大家能有所帮助!
时间: 2024-10-31 04:40:03