ormlite-android
ormlite-android copied to clipboard
ORMLite Android functionality used in conjunction with ormlite-core
I have the following code: ```java public Operation getLocalOperation(int mostRecentOperation, int skip) { try { Operation operation = databaseHelper.getOperationDao().queryBuilder() .orderBy(Operation.ID_FIELD, true) .offset((long)skip) .where() .isNull(Operation.FOREIGN_USER_FIELD) .and() .ge(Operation.ID_FIELD, mostRecentOperation) .queryForFirst(); return operation;...
Replaced deprecated Android support-v4 library with AndroidX loader library - Now builds .aar - Added .aar plugins for maven - Needs Android SDK (just set $ANDROID_HOME environment variable)
now, i have a User object and a Role object , it look like this: ``` class User { private int id; private String username; private int roleId; } class...
log4j
Hi i was attempting to publish a library that uses this library as a dependency. oss.sonatype.org send me a "lift" report that flagged this library as having a few security...
BaseConnectionSource.getSpecialConnection(String tableName) . tableName is not used anywhere and null is passed from the places where method is getting called.
`try { Dao dao = getDao(classExample.class); dao.createIfNotExists(obj); } catch (SQLException e) { e.printStackTrace(); } ` classExample have string, and if I try to insert an object with single quote ('),...
Hello! Please build a version where `OrmLiteSqliteOpenHelper` extends from `androidx.sqlite.db.SupportSQLiteOpenHelper`. Thank you in advance. https://developer.android.com/reference/androidx/sqlite/db/SupportSQLiteOpenHelper
First of all I would like to thank you for OrmLite as it was and is very helpful for migrating my app from using custom cursors to full-fledged object-relational mapping....
The connection pool for database '/data/user/0/package/databases/database.sqlite' has been unable to grant a connection to thread 2 (main) with flags 0x5 for 30.002 seconds. Connections: 0 active, 1 idle, 0 available....
I am trying to use proguard but I am getting error with the ormlite 09-16 19:31:27.477 13462 13462 E AndroidRuntime: java.lang.RuntimeException: Unable to create application br.com.calculadora.v2.CalculadoraApplication: java.lang.IllegalArgumentException: Foreign field class...