You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ch...@apache.org on 2010/06/01 20:51:34 UTC

svn commit: r950200 - /db/derby/docs/branches/10.6/src/devguide/cdevconcepts29416.dita

Author: chaase3
Date: Tue Jun  1 18:51:34 2010
New Revision: 950200

URL: http://svn.apache.org/viewvc?rev=950200&view=rev
Log:
DERBY-4682: Inaccurate description of how a statement is completed in Developer's guide

Merged DERBY-4682.diff to 10.6 docs branch from trunk revision 950199.

Modified:
    db/derby/docs/branches/10.6/src/devguide/cdevconcepts29416.dita

Modified: db/derby/docs/branches/10.6/src/devguide/cdevconcepts29416.dita
URL: http://svn.apache.org/viewvc/db/derby/docs/branches/10.6/src/devguide/cdevconcepts29416.dita?rev=950200&r1=950199&r2=950200&view=diff
==============================================================================
--- db/derby/docs/branches/10.6/src/devguide/cdevconcepts29416.dita (original)
+++ db/derby/docs/branches/10.6/src/devguide/cdevconcepts29416.dita Tue Jun  1 18:51:34 2010
@@ -30,9 +30,12 @@ is in auto-commit mode by default, as sp
 called on that statement automatically. Auto-commit in effect makes every
 SQL statement a transaction. The commit occurs when the statement completes
 or the next statement is executed, whichever comes first. In the case of a
-statement returning a <codeph><i>ResultSet</i></codeph>, the statement completes
+statement returning a forward only <codeph><i>ResultSet</i></codeph>, the statement completes
 when the last row of the <codeph><i>ResultSet</i></codeph> has been retrieved
-or the <codeph><i>ResultSet</i></codeph> has been closed explicitly.</p>
+or the <codeph><i>ResultSet</i></codeph> has been closed explicitly. In the case
+of a statement returning a scrollable <codeph><i>ResultSet</i></codeph>, the
+statement completes only when the <codeph><i>ResultSet</i></codeph> has been
+closed explicitly.</p>
 <p>Some applications might prefer to work with <ph conref="../conrefs.dita#prod/productshortname"></ph> in
 auto-commit mode; some might prefer to work with auto-commit turned off. You
 should be aware of the implications of using either model.</p>