Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Core data in Android

Tags:

android

i have an iphone application that use core data for searching ,and in similar application in andoird am using sqlite ,so my performance is lower than iphone , is there anything similar to core data in Android ?.Also can i get any performance advantage by using ORM (am searching in table contain records 7000+)

like image 761
Bytecode Avatar asked Oct 10 '22 19:10

Bytecode


1 Answers

For readers who are looking for a Core Data replacement in Android, I suggest an ORM tool like greenDAO. It allows you work with Java objects and uses SQLite as its storage back end.

like image 117
Krish007 Avatar answered Oct 14 '22 02:10

Krish007