Top "Ormlite" questions

ORMLite is a Java open source software framework that provides lightweight object relational mapping (ORM) between Java classes and SQL databases.

ORMLite reset all tables

I have an application that uses ORMLite. I need to create a function to reset the entire db (basically I …

android ormlite
Deleting using ormlite on android?

I have a Client bean , @DatabaseField(columnName = "client_id",generatedId = true,useGetSet = true) private Integer clientId; @DatabaseField(columnName = "client_nom",…

android ormlite foreign-collection
How to use multiple primary keys

I created database, for my android app, witch has 16 tables. I want to use ORMlite mapping. The problem is that …

android ormlite
Android Studio run configuration for ORMLite config generation

I'm using Android Studio and want to use ORMLite framework. ORMLite for Android has a mechanism for making DAO creation …

android android-studio ormlite
What is the best way to implement many-to-many relationships using ORMLite?

I'm currently playing with ORMlite to make a model with tables and relationships. One relationship is a many-to-many relationship. What's …

android database relationship ormlite
Convert ForeignCollection to ArrayList - ORMLite, Gson and Android

I apologize if I'm not super clear with my explanation but I'll add to and edit this question for clarity …

android arraylist gson ormlite foreign-collection
ORMLite JOINs, or rawQuery auto mapping

I am looking for a way to do a query that requires a JOIN. Is there any way to do …

java android orm ormlite
App on release crashes, while on debug doesn't

I'm developing an app using Android Studio, and when I switched from debug to release build variant, it began to …

android android-studio proguard ormlite release-mode
ORMLITE ORDER_BY with multiple columns

I am using ormlite in my recent android project. I want to order by on a query on multiple columns …

android sql-order-by ormlite
Proguard with OrmLite on Android

How should I use proguard with ormlite library on Android? Trying this: -keep class com.j256.** -keepclassmembers class com.j256.** …

android optimization obfuscation proguard ormlite