I'm using db4o in a small project that works great on Android 2.2, 2.3, etc. On Honeycomb, however, database initialization results in the following error:
com.db4o.ext.Db4oException: File format incompatible: '/data/data/com.myapp/app_data/my_app.db4o'
This force close and the error occur on both a Xoom running Honeycomb and a Galaxy Tab running Honeycomb.
The relevant code is:
public ObjectContainer db() {
// Create, open, and close the database
try {
if (oc == null || oc.ext().isClosed()) {
oc = Db4oEmbedded
.openFile(dbConfig(), db4oDBFullPath(mContext));
}
return oc;
} catch (Exception e) {
Log.e(CFA开发者_Go百科Application.TAG, e.toString());
return null;
}
}
private String db4oDBFullPath(Context ctx) {
// Returns the path for the database location
return ctx.getDir("data", 2) + "/" + "myapp.db4o";
}
public List<MyItem> getListItem(final String passedItemTitle) {
List<MyItem> result = db().query(new Predicate<MyItem>() { // Error occurs here
public boolean match(MyItem listItem) {
if (passedItemTitle.equals(listItem.getTitle())) {
return true;
}
return false;
}
});
return result;
}
Is there some difference in the way Honeycomb handles its external file system? Is there anything I can change in the db4oDBFullPath() method that would make the two compatible? I'm really at a loss as to what's happening that's different. Maybe there are some Honeycomb-specific permissions that I need to enable?
It's been fixed in the latest release:
http://community.versant.com/Blogs/db4o/tabid/197/entryid/1057/Default.aspx
I saw something similar on a Xoom. Turns out file creation was erring out because the Xoom runs in strict mode and strict mode was preventing DB4o from phoning home. Leaving a corrupted stub database. Try doing your initial Db4oEmbedded.openFile inside an AsyncTask.
After deleting the corrupted file of course.
com.db4o.ext.Db4oException: File format incompatible
dissapears when I include in the AndroidManifest.xml the next line:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />;
it is important to mention that additionally I made the code for dealing with the db4o in separate thread...
so the code looks like:
package com.inbytebg;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import com.db4o.Db4oEmbedded;
import com.db4o.ObjectContainer;
import com.db4o.ObjectSet;
import com.inbytebg.entities.Customer;
public class MainActivity8 extends Activity {
Button savetodb4o;
Button readfromdb4o;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
savetodb4o = (Button) findViewById(R.id.save_to_db4o);
savetodb4o.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
new Thread() {
@Override
public void run() {
String dbPath = getApplicationContext().getDir("data", 0) + "/" + "customer.db4o";
ObjectContainer db = Db4oEmbedded.openFile(Db4oEmbedded.newConfiguration(), dbPath);
Customer cust = new Customer();
cust.setId(1);
cust.setName("stancho stanchev");
cust.setAddress("razgrad");
try {
db.store(cust);
Log.i("db4o...", "customer stored...");
} finally {
db.close();
}
}
}.start();
}
});
readfromdb4o = (Button) findViewById(R.id.read_from_db4o);
readfromdb4o.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
String dbPath = getApplicationContext().getDir("data", 0) + "/" + "customer.db4o";
ObjectContainer db = Db4oEmbedded.openFile(Db4oEmbedded.newConfiguration(), dbPath);
ObjectSet result;
try {
result = db.queryByExample(Customer.class);
while (result.hasNext()) {
Customer customer = (Customer) result.next();
Log.i("db4o retrieve:...",
"Name: " + customer.getName()
+ " id: " + customer.getId()
+ " address: " + customer.getAddress());
}
} finally {
db.close();
}
}
});
}
}
and the AndroidManifest.xml is:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.inbytebg"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="11" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name="MainActivity8"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
the debug output is:
D/dalvikvm( 2231): GC_CONCURRENT freed 538K, 9% free 6705K/7367K, paused 7ms+14ms
I/db4o... ( 2231): customer stored...
I/db4o retrieve:...( 2231): Name: stancho stanchev id: 1 address: razgrad
I/db4o retrieve:...( 2231): Name: stancho stanchev id: 1 address: razgrad
I/db4o retrieve:...( 2231): Name: stancho stanchev id: 1 address: razgrad
I/db4o retrieve:...( 2231): Name: stancho stanchev id: 1 address: razgrad
I/db4o retrieve:...( 2231): Name: stancho stanchev id: 1 address: razgrad
精彩评论