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 dj...@apache.org on 2006/10/28 00:24:43 UTC

svn commit: r468563 - /db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html

Author: djd
Date: Fri Oct 27 15:24:42 2006
New Revision: 468563

URL: http://svn.apache.org/viewvc?view=rev&rev=468563
Log:
DERBY-1930 Apply corrections noted in comments by Dag H. Wanvik in DERBY-1930.

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html

Modified: db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html?view=diff&rev=468563&r1=468562&r2=468563
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html Fri Oct 27 15:24:42 2006
@@ -97,7 +97,7 @@
 <a name="implconnection"/a>
 <h3>java.sql.Connection</h3>
 <h4>Clarification for createStatement(), prepareStatement() and prepareCall()</h4>
-CONCUR_UPDATABLE concurrency is supported for FORWARD ONLY ResultSet types only.
+CONCUR_UPDATABLE concurrency is supported for TYPE_FORWARD_ONLY and TYPE_SCROLL_INSENSITIVE ResultSet types only.
 <hr>
 <a name="implpreparedstatement"/a>
 <h3>java.sql.PreparedStatement</h3>
@@ -127,9 +127,11 @@
 values, use of a getXXX() method that works against NULL and non-NULL values is strongly recommended.
 </UL>
 <h4> Clarification for deleteRow()</h4>
-After deleteRow, ResultSet will be positioned right before the next row for FORWARD ONLY updatable ResultSets.
+After deleteRow, ResultSet will be positioned right before the next row for TYPE_FORWARD_ONLY and TYPE_SCROLL_INSENSITIVE updatable ResultSets.
 <h4> Clarification for updateRow()</h4>
-After updateRow, ResultSet will be positioned right before the next row for FORWARD ONLY updatable ResultSets.
+After updateRow, ResultSet will be positioned right before the next
+row for TYPE_FORWARD_ONLY updatable ResultSets. The ResultSet remain
+on the current row for TYPE_SCROLL_INSENSITIVE updatable ResultSets.
 <h4>Clarification for getAsciiStream()</h4>
 getAsciiStream() is not recommended to use in Derby,
 because Derby handles characters as unicode internally ,