You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by Apache Wiki <wi...@apache.org> on 2009/02/25 17:22:53 UTC

[Jackrabbit Wiki] Update of "DataStore" by EricWoutVanDerSteen

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Jackrabbit Wiki" for change notification.

The following page has been changed by EricWoutVanDerSteen:
http://wiki.apache.org/jackrabbit/DataStore

The comment on the change is:
Clarified the tablespace configuration.

------------------------------------------------------------------------------
   * driver: The JDBC driver class name. By default the default driver of the configured database type is used.
   * maxConnections: Set the maximum number of concurrent connections in the pool. At least 3 connections are required if the garbage collection process is used.
   * copyWhenReading: The the copy setting, enabled by default. If enabled, a stream is always copied to a temporary file when reading a stream, so that reads can be concurrent. If disabled, reads are serialized.
-  * tablePrefix: The table name prefix. The default is empty. The table name is constructed like this: ${tablePrefix}${schemaObjectPrefix}${tableName}
+  * tablePrefix: The table name prefix. The default is empty. Can be used to select an non-default schema or catalog. The table name is constructed like this: ${tablePrefix}${schemaObjectPrefix}${tableName}
-  * schemaObjectPrefix: The schema object prefix. The default is empty.
+  * schemaObjectPrefix: The schema object prefix. The default is empty. Available from version 1.6+
  
  == FAQ ==