Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ormlite or sqlite Which one is good for Android perspective? [closed]

I am confused the which one good for android perspective either Ormlite or sqlite. please can you give me suggestion which one is better for use our android app. And makes easy to use and supported all android devices? I want to use the ormlite in our project but before i want to sure that it will be helfull for me and my app. So please guide me if any one used earlier this. I much appreciate your thought here.Thnaks

like image 484
Sunil Kumar Avatar asked Aug 12 '13 07:08

Sunil Kumar


1 Answers

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

if you use this framework you are ultimately using sqlite database (ORMLite is no database),it allows you to implemet a good architecture to your application, I always prefer using ORMLite

Here is my blog on ORMLite if you want to get started with it!!

like image 86
Sourabh Saldi Avatar answered Oct 02 '22 12:10

Sourabh Saldi