From 8f236c2aeb8ccdda45cb28505c81fa311c96541e Mon Sep 17 00:00:00 2001 From: Milosz Tylenda Date: Sun, 14 Mar 2010 19:41:06 +0000 Subject: [PATCH] OPENJPA-1510: Correct broken links in Configuring Savepoints section, remove OracleSavepointManager description since it does not exist in OpenJPA. git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@922933 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/doc/manual/ref_guide_runtime.xml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/openjpa-project/src/doc/manual/ref_guide_runtime.xml b/openjpa-project/src/doc/manual/ref_guide_runtime.xml index cb8f5b7a9..6ac65fdb7 100644 --- a/openjpa-project/src/doc/manual/ref_guide_runtime.xml +++ b/openjpa-project/src/doc/manual/ref_guide_runtime.xml @@ -1055,7 +1055,7 @@ savepoint state. OpenJPA includes the following SavepointManager in-mem: The default. This is an alias for the - + org.apache.openjpa.kernel.InMemorySavepointManager. This plugin stores all state, including field values, in memory. Due to this behavior, each set savepoint is designed for small to medium transactional @@ -1065,24 +1065,13 @@ object counts. jdbc: This is an alias for the - -org.apache.openjpa.jdbc.kernel.JDBCSavepointManager. This + +org.apache.openjpa.jdbc.kernel.JDBC3SavepointManager. This plugin requires JDBC 3 and java.sql.Savepoint support to operate. Note that this plugin implements savepoints by issuing a flush to the database. - - -oracle: This is an alias for the - -org.apache.openjpa.jdbc.sql.OracleSavepointManager. This -plugin operates similarly to the JDBC plugin; however, it -uses Oracle-specific calls. This plugin requires using the Oracle JDBC driver -and database, versions 9.2 or higher. Note that this plugin -implements savepoints by issuing a flush to the database. - -