For the android application I'm creating I decided to use db4o for managing my persistence data. For this I have to insert a few hundred rows of a very simple object.
public class Teacher
{
String name;
String value;
}
I tried to insert this by inserting it as an ArrayList and by inserting it one by one. In both cases it takes about 15 seconds for inserting and 6 seconds for selecting. While using the normal SQLite of android it is done in less then a second.
The db4o documentary says that you should do some commits if you are bulk inserting but they talk about 100.000+ objects. A few hundred don't seem like a bulk to me.
I have some more complex objects that work pretty fast (a 'week' class that contains 'days' where each day has 'events').
Should I configure something for handling a few hundred rows on a fast way or is there a better alternative for persistence data than db4o. I could use SQLite but I wan't to get rid of that as it's a lot of work to update etc.
I'm opening the database as
String path = new ContextWrapper(context).getFilesDir().getAbsolutePath();
database = Db4oEmbedded.openFile(Db4oEmbedded.newConfiguration(), path + this.DATABASE_FILENAME);
and retrieving the list as
public ArrayList<Teacher> getTeachers()
{
Query query = getDatabase().query();
query.constrain(Teacher.class);
ObjectSet<Teacher> result = query.execute();
return new ArrayList<Teacher>(result);
}
Software used
- Android 2.3.4
- HTC Desire
- db4o 8.0.184