最近使用greendao的過程當中,有一個需求:將數據庫的內容根據組別展現。意思就是須要將數據庫中的全部組別取出來,而後根據組別加載數據。以前個人笨辦法是獲取全部的數據,而後對獲得的數據手動去重(比較每一個實體的組別值是否一致,不是就加到一個List集合中)。
笨辦法在數量比較小的數據庫裏面不會有什麼影響,可是爲了追求完美,我查詢了數據庫,獲得須要」SELECT DISTINCT」字段才能查詢,可是SQLite都不會的我,怎麼會查詢這個呢?這個時候離成功很近了,不過我仍是偷懶了——直接去查詢人家是怎麼實現的?數據庫
private static final String SQL_DISTINCT_ENAME = "SELECT DISTINCT "+EmpDao.Properties.EName.columnName+" FROM "+EmpDao.TABLENAME; public static List<String> listEName(DaoSession session) { ArrayList<String> result = new ArrayList<String>(); Cursor c = session.getDatabase().rawQuery(SQL_DISTINCT_ENAME, null); try{ if (c.moveToFirst()) { do { result.add(c.getString(0)); } while (c.moveToNext()); } } finally { c.close(); } return result; }
經過這個方法直接就能夠實現了,可是這個DaoSession對象很差找,是greendao自動生成的對象,而後在EmpDao裏面增長getDaoSession()方法是無效的,一編譯就將手動添加的方法刪除了。我是在本身的GreenDaoHelper方法裏面找到的,代碼以下:安全
/** * GreenDao多個數據庫的支持類 * Created by Administrator on 2017/4/4 0004. */ public class GreenDaoHelper { private HashMap<String,DaoSession> hash = new HashMap<String,DaoSession>(); public String pBaseDbPath = "/PuCha2.0/PestGeneralSurvey/PuChaSurvey.db"; private Context pContext; public GreenDaoHelper(Context pContex,String pBaseDbPath){ this.pContext = pContex; this.pBaseDbPath = pBaseDbPath; initDatabase(pBaseDbPath); } /** * 初始化greenDao,這個操做建議在Application初始化的時候添加; */ public DaoSession initDatabase(String pPath) { // 經過 DaoMaster 的內部類 DevOpenHelper,你能夠獲得一個便利的 SQLiteOpenHelper 對象。 // 可能你已經注意到了,你並不須要去編寫「CREATE TABLE」這樣的 SQL 語句,由於 greenDAO 已經幫你作了。 // 注意:默認的 DaoMaster.DevOpenHelper 會在數據庫升級時,刪除全部的表,意味着這將致使數據的丟失。 // 因此,在正式的項目中,你還應該作一層封裝,來實現數據庫的安全升級。 DaoMaster.DevOpenHelper mHelper = new DaoMaster.DevOpenHelper(pContext, FormUtil.getInnerSDCardPath()+pPath, null); SQLiteDatabase db = mHelper.getWritableDatabase(); // 注意:該數據庫鏈接屬於 DaoMaster,因此多個 Session 指的是相同的數據庫鏈接。 DaoMaster mDaoMaster = new DaoMaster(db); DaoSession mDaoSession = mDaoMaster.newSession(); hash.put(pPath,mDaoSession); return mDaoSession; } public DaoSession getDaoSession(String pDbPath) throws FileNotFoundException { DaoSession mDaoSession = hash.get(pDbPath); if(!fileIsExists(FormUtil.getInnerSDCardPath()+pDbPath)){ throw new FileNotFoundException(); } if(mDaoSession == null){ return initDatabase(pDbPath); } return mDaoSession; } public DaoSession getBaseDaoSession(){ DaoSession mDaoSession = hash.get(pBaseDbPath); if(mDaoSession == null){ return initDatabase(pBaseDbPath); } return mDaoSession; } public boolean fileIsExists(String pPath){ try{ File f=new File(pPath); if(!f.exists()){ return false; } }catch (Exception e) { // TODO: handle exception return false; } return true; } }
方法出處session