Description:
|
This Java
library offers an object-oriented database (OODB) that is mostly transparent
to your application and requires no object-relational mapping. Simply write
your application like you would without a database and make your classes
implement java.io.Serializable . After constructing a new object, register
it with the database. When the object changes, the framework automatically
updates the database. When the object becomes unreachable, it is automatically removed
from the database. You can specify (potentially nested) transactions to adjust
the atomicity of operations. Object locking and deadlock detection
are handled automatically. The
library runs on the Java 5.0 (or greater) platform. For more information, see the FAQs, tutorial, and API.
|