package model.daoModels; import java.util.List; import java.util.ArrayList; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteStatement; import de.greenrobot.dao.AbstractDao; import de.greenrobot.dao.Property; import de.greenrobot.dao.internal.SqlUtils; import de.greenrobot.dao.internal.DaoConfig; import de.greenrobot.dao.query.Query; import de.greenrobot.dao.query.QueryBuilder; import model.daoModels.BibleChapter; // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. /** * DAO for table "BIBLE_CHAPTER". */ public class BibleChapterDao extends AbstractDao<BibleChapter, Long> { public static final String TABLENAME = "BIBLE_CHAPTER"; /** * Properties of entity BibleChapter.<br/> * Can be used for QueryBuilder and for referencing column names. */ public static class Properties { public final static Property Id = new Property(0, Long.class, "id", true, "_id"); public final static Property UniqueSlug = new Property(1, String.class, "uniqueSlug", false, "UNIQUE_SLUG"); public final static Property Slug = new Property(2, String.class, "slug", false, "SLUG"); public final static Property Number = new Property(3, String.class, "number", false, "NUMBER"); public final static Property Text = new Property(4, String.class, "text", false, "TEXT"); public final static Property SingleChapterBookName = new Property(5, String.class, "singleChapterBookName", false, "SINGLE_CHAPTER_BOOK_NAME"); public final static Property BookId = new Property(6, long.class, "bookId", false, "BOOK_ID"); }; private DaoSession daoSession; private Query<BibleChapter> book_BibleChaptersQuery; public BibleChapterDao(DaoConfig config) { super(config); } public BibleChapterDao(DaoConfig config, DaoSession daoSession) { super(config, daoSession); this.daoSession = daoSession; } /** Creates the underlying database table. */ public static void createTable(SQLiteDatabase db, boolean ifNotExists) { String constraint = ifNotExists? "IF NOT EXISTS ": ""; db.execSQL("CREATE TABLE " + constraint + "\"BIBLE_CHAPTER\" (" + // "\"_id\" INTEGER PRIMARY KEY ," + // 0: id "\"UNIQUE_SLUG\" TEXT," + // 1: uniqueSlug "\"SLUG\" TEXT," + // 2: slug "\"NUMBER\" TEXT," + // 3: number "\"TEXT\" TEXT," + // 4: text "\"SINGLE_CHAPTER_BOOK_NAME\" TEXT," + // 5: singleChapterBookName "\"BOOK_ID\" INTEGER NOT NULL );"); // 6: bookId } /** Drops the underlying database table. */ public static void dropTable(SQLiteDatabase db, boolean ifExists) { String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"BIBLE_CHAPTER\""; db.execSQL(sql); } /** @inheritdoc */ @Override protected void bindValues(SQLiteStatement stmt, BibleChapter entity) { stmt.clearBindings(); Long id = entity.getId(); if (id != null) { stmt.bindLong(1, id); } String uniqueSlug = entity.getUniqueSlug(); if (uniqueSlug != null) { stmt.bindString(2, uniqueSlug); } String slug = entity.getSlug(); if (slug != null) { stmt.bindString(3, slug); } String number = entity.getNumber(); if (number != null) { stmt.bindString(4, number); } String text = entity.getText(); if (text != null) { stmt.bindString(5, text); } String singleChapterBookName = entity.getSingleChapterBookName(); if (singleChapterBookName != null) { stmt.bindString(6, singleChapterBookName); } stmt.bindLong(7, entity.getBookId()); } @Override protected void attachEntity(BibleChapter entity) { super.attachEntity(entity); entity.__setDaoSession(daoSession); } /** @inheritdoc */ @Override public Long readKey(Cursor cursor, int offset) { return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0); } /** @inheritdoc */ @Override public BibleChapter readEntity(Cursor cursor, int offset) { BibleChapter entity = new BibleChapter( // cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // uniqueSlug cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2), // slug cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3), // number cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4), // text cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5), // singleChapterBookName cursor.getLong(offset + 6) // bookId ); return entity; } /** @inheritdoc */ @Override public void readEntity(Cursor cursor, BibleChapter entity, int offset) { entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0)); entity.setUniqueSlug(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1)); entity.setSlug(cursor.isNull(offset + 2) ? null : cursor.getString(offset + 2)); entity.setNumber(cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3)); entity.setText(cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4)); entity.setSingleChapterBookName(cursor.isNull(offset + 5) ? null : cursor.getString(offset + 5)); entity.setBookId(cursor.getLong(offset + 6)); } /** @inheritdoc */ @Override protected Long updateKeyAfterInsert(BibleChapter entity, long rowId) { entity.setId(rowId); return rowId; } /** @inheritdoc */ @Override public Long getKey(BibleChapter entity) { if(entity != null) { return entity.getId(); } else { return null; } } /** @inheritdoc */ @Override protected boolean isEntityUpdateable() { return true; } /** Internal query to resolve the "bibleChapters" to-many relationship of Book. */ public List<BibleChapter> _queryBook_BibleChapters(long bookId) { synchronized (this) { if (book_BibleChaptersQuery == null) { QueryBuilder<BibleChapter> queryBuilder = queryBuilder(); queryBuilder.where(Properties.BookId.eq(null)); book_BibleChaptersQuery = queryBuilder.build(); } } Query<BibleChapter> query = book_BibleChaptersQuery.forCurrentThread(); query.setParameter(0, bookId); return query.list(); } private String selectDeep; protected String getSelectDeep() { if (selectDeep == null) { StringBuilder builder = new StringBuilder("SELECT "); SqlUtils.appendColumns(builder, "T", getAllColumns()); builder.append(','); SqlUtils.appendColumns(builder, "T0", daoSession.getBookDao().getAllColumns()); builder.append(" FROM BIBLE_CHAPTER T"); builder.append(" LEFT JOIN BOOK T0 ON T.\"BOOK_ID\"=T0.\"_id\""); builder.append(' '); selectDeep = builder.toString(); } return selectDeep; } protected BibleChapter loadCurrentDeep(Cursor cursor, boolean lock) { BibleChapter entity = loadCurrent(cursor, 0, lock); int offset = getAllColumns().length; Book book = loadCurrentOther(daoSession.getBookDao(), cursor, offset); if(book != null) { entity.setBook(book); } return entity; } public BibleChapter loadDeep(Long key) { assertSinglePk(); if (key == null) { return null; } StringBuilder builder = new StringBuilder(getSelectDeep()); builder.append("WHERE "); SqlUtils.appendColumnsEqValue(builder, "T", getPkColumns()); String sql = builder.toString(); String[] keyArray = new String[] { key.toString() }; Cursor cursor = db.rawQuery(sql, keyArray); try { boolean available = cursor.moveToFirst(); if (!available) { return null; } else if (!cursor.isLast()) { throw new IllegalStateException("Expected unique result, but count was " + cursor.getCount()); } return loadCurrentDeep(cursor, true); } finally { cursor.close(); } } /** Reads all available rows from the given cursor and returns a list of new ImageTO objects. */ public List<BibleChapter> loadAllDeepFromCursor(Cursor cursor) { int count = cursor.getCount(); List<BibleChapter> list = new ArrayList<BibleChapter>(count); if (cursor.moveToFirst()) { if (identityScope != null) { identityScope.lock(); identityScope.reserveRoom(count); } try { do { list.add(loadCurrentDeep(cursor, false)); } while (cursor.moveToNext()); } finally { if (identityScope != null) { identityScope.unlock(); } } } return list; } protected List<BibleChapter> loadDeepAllAndCloseCursor(Cursor cursor) { try { return loadAllDeepFromCursor(cursor); } finally { cursor.close(); } } /** A raw-style query where you can pass any WHERE clause and arguments. */ public List<BibleChapter> queryDeep(String where, String... selectionArg) { Cursor cursor = db.rawQuery(getSelectDeep() + where, selectionArg); return loadDeepAllAndCloseCursor(cursor); } }