Interface Summary |
DArray |
The interface that defines the operations of an ODMG array. |
Database |
The interface for interacting with an ODMG database. |
DBag |
This interface defines the operations associated with an ODMG bag collection. |
DCollection |
The base interface for all ODMG collections. |
DList |
The ODMG List collection. |
DMap |
The ODMG Map collection interface. |
DSet |
The ODMG Set collection interface. |
Implementation |
The factory interface for a particular ODMG implementation. |
OQLQuery |
The interface to an OQL query object. |
Transaction |
This interfaces provides the operations necessary to perform database transactions. |
Exception Summary |
ClassNotPersistenceCapableException |
This exception is thrown when the implementation cannot make an object persistent because of the type of the object. |
DatabaseClosedException |
This exception is thrown when an attempt is made to call a method
on a Database that has been closed or has not been opened. |
DatabaseIsReadOnlyException |
This exception is thrown when a call has been made that modifies
a database that is open in read-only mode. |
DatabaseNotFoundException |
This exception is thrown when attempting to open a database that does not exist. |
DatabaseOpenException |
This exception is thrown when attempting to open a database that is already open. |
LockNotGrantedException |
This exception is thrown if a lock could not be granted on an object. |
NotImplementedException |
This exception is thrown when an implementation does not support an operation. |
ObjectDeletedException |
This exception is thrown when accessing an object that was deleted. |
ObjectNameNotFoundException |
An attempt to get a object via its name using Database.lookup
and the name is not associated with an object in the database. |
ObjectNameNotUniqueException |
This exception is thrown when attempting to bind a name to an object
when the name is already bound to another object. |
ObjectNotPersistentException |
This exception is thrown when deleting an object that is not persistent. |
ODMGException |
This is the base class for all exceptions thrown by an ODMG implementation. |
ODMGRuntimeException |
This is the base class for all RuntimeExceptions thrown by an ODMG implementation. |
QueryException |
This is the base class for all exceptions associated with queries. |
QueryInvalidException |
This exception is thrown if the query is not a valid OQL query. |
QueryParameterCountInvalidException |
This exception is thrown when the number of bound parameters for a query
does not match the number of placeholders. |
QueryParameterTypeInvalidException |
This exception is thrown when the type of a query parameter
is not compatible with the expected type. |
TransactionAbortedException |
This exception is thrown when the database asynchronously and explicitly
aborts the user's transaction due to some failure, the user's data is reset
just as if the user had directly called Transaction.abort . |
TransactionInProgressException |
This exception is thrown when a call has been made to a method that
should not be called when a transaction is in progress. |
TransactionNotInProgressException |
This exception is thrown when attempting to perform an operation that
must be performed when there is a transaction is in progress, but no
such transaction is in progress. |