javax.jdo.PersistenceManagerFactoryClass |
The name of the PersistenceManager implementation |
javax.jdo.option.ConnectionFactory |
Instance of a connection factory. For RBDMS, it must be an instance of javax.sql.DataSource.
This is for a transactional DataSource |
javax.jdo.option.ConnectionFactory2 |
Instance of a connection factory. For RBDMS, it must be an instance of javax.sql.DataSource.
This is for a non-transactional DataSource |
javax.jdo.option.ConnectionFactoryName |
The JNDI name for a connection factory. For RBDMS, it must be a JNDI name that points to a javax.sql.DataSource object.
This is for a transactional DataSource |
javax.jdo.option.ConnectionFactory2Name |
The JNDI name for a connection factory. For RBDMS, it must be a JNDI name that points to a javax.sql.DataSource object.
This is for a non-transactional DataSource |
javax.jdo.option.ConnectionDriverName |
The name of the driver to use for the DB |
javax.jdo.option.ConnectionDriverURL |
URL specifying the datastore to use for persistence |
javax.jdo.option.ConnectionUserName |
Username to use for connecting to the DB |
javax.jdo.option.ConnectionPassword |
Password to use for connecting to the DB |
javax.jdo.option.IgnoreCache |
Whether to ignore the cache for queries. Range of Values: true | false |
javax.jdo.option.Multithreaded |
Whether to run the PersistenceManager multithreaded.
Range of Values: true | false |
javax.jdo.option.NontransactionalRead |
Whether to allow nontransactional reads.
Range of Values: true | false |
javax.jdo.option.NontransactionalWrite |
Whether to allow nontransactional writes.
Range of Values: true | false |
javax.jdo.option.Optimistic |
Whether to use Optimistic locking on transactions.
Range of Values: true | false |
javax.jdo.option.RetainValues |
Whether to suppress the clearing of values from persistent instances on transaction completion.
Range of Values: true | false |
javax.jdo.option.RestoreValues |
Whether persistent object have transactional field values restored when transaction rollback occurs.
Range of Values: true | false |
javax.jdo.option.Mapping |
Name for the ORM MetaData mapping files to use with this PMF.
For example if this is set to "mysql" then the implementation looks for MetaData mapping files called "{classname}-mysql.orm" or "package-mysql.orm".
If this is not specified then the JDO implementation assumes that all is specified in the JDO MetaData file.
ORM datastores only |
javax.jdo.mapping.Catalog |
Name of the catalog to use by default for all classes persisted using this PMF.
This can be overridden in the MetaData where required, and is optional.
ORM datastores only |
javax.jdo.mapping.Schema |
Name of the schema to use by default for all classes persisted using this PMF.
This can be overridden in the MetaData where required, and is optional.
ORM datastores only |
javax.jdo.option.DetachAllOnCommit |
Allows the user to select that when a transaction is committed all objects enlisted in that transaction will be automatically detached.
Range of Values: true | false |
javax.jdo.option.CopyOnAttach |
Whether, when attaching a detached object, we create an attached copy or simply migrate the detached object to attached state.
Range of Values: true | false |
javax.jdo.option.TransactionType |
Type of transaction to use. If running under JavaSE the default is RESOURCE_LOCAL, and if running under JavaEE/JakartaEE the default is JTA.
Range of Values: RESOURCE_LOCAL | JTA |
javax.jdo.option.PersistenceUnitName |
Name of the "persistence-unit" to use with this PMF. This borrows the "persistence-unit" concept from JPA for use with JDO. |
javax.jdo.option.ServerTimeZoneID |
Id of the TimeZone under which the datastore server is running.
If this is not specified or is set to null it is assumed that the datastore server is running in the same timezone as the JVM under which the
implementation is running. |
javax.jdo.option.Name |
Name of the PMF. This is for use with "named PMF" functionality (see jdoconfig.xml). |
javax.jdo.option.ReadOnly |
Whether this datastore should be treated as read only.
Range of Values: true | false |
javax.jdo.option.TransactionIsolationLevel |
Isolation level to use for connections in the current transaction.
Range of Values: none | read-committed | read-uncommitted | repeatable-read | snapshot | serializable |