|
|
Browse by Tags
All Tags » Java 5 » db4o java (RSS)
-
Hi I am a contributor to the google-guice community and open source java in general.
We maintain integration modules between guice and several ORM frameworks. It seemed logical to have a db4objects alternative, and one of our contributors was kind enough to provide one. db4o is one of my long-time favorites, and we've had good success combining ...
-
Edwin,
Thanks for your reply and suggestions. I will look more closely in the reference documents...
I also tried to incorporate your Configuration suggestions. My server code now reads:
Configuration config = Db4o.newConfiguration(); ...
-
Okay, I finally figured out what the problem was with my NQ in Client/Server. It basically came down to the anonymous inner class and how DB4O sends the query over the network to the server. It wasn't able to serialize it correctly, so the query didn't work.
I moved my Predicates out of the dao class and into their own. ...
-
I have a class with a generic attribute
public class SimplePerson<V extends Comparable> implements Serializable, SimplePersonIf {
private static final long serialVersionUID = 1L;
private String name;
private List<SimplePersonIf> friends;
private V value;
When I store an object, the attribute ''value'' is not ...
|
|
|