Top "Ormlite" questions

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

JavaFX, Casting ArrayList to ObservableList

Is there a way to cast ArrayList to ObservableList? I would like to do it without iterating through ArrayList. To …

java arraylist javafx ormlite observablelist
What is a good tutorial for using ORMLite with SQLite and Android

I am looking for a good introductory tutorial on how to use ORMLite with SQLite and Android. A qucick google …

android sqlite ormlite
Green DAO vs ORM lite vs Active Android

Which is the best ORM tool available for Android? I am seeing ORMlite and ActiveAndroid are the most discussed across …

android ormlite greendao activeandroid droidparts
Android - ActionBar SearchView suggestions with a simple String array

I want to implement an ActionBar Search Widget with suggestions ability. I already have a string array stored in my …

android android-actionbar ormlite searchview
How can I reset a autoincrement sequence number in sqlite

How to update table sqlite_sequence in Ormlite ? I just need update seq. How can I get that table via …

android sqlite ormlite
Writing a query with ORMLite

How can I write a query with ormlite instead of using .create or any other thing like that? Can you …

ormlite query-builder
Saving nested foreign objects with ORMLite on Android

When working on Android, does ORMLite only save shallow level objects? I have a data structure with nested Objects, both …

android ormlite
Collections in ORMLite

Hello I want persist some collections data with ORMlite in my android app. For example : class Person { @DatabaseField(generatedId=true) …

android orm collections ormlite foreign-collection
how to delete a record from ORMLITE?

I need to delete a record from ORMLite Database I can delete a record by id using as below @Override …

android ormlite
How to update column with ORMLite

I have an already created database for Android application and I'm using ORMLite for query to SQLLite. I have added …

android sqlite ormlite