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 jt...@apache.org on 2005/05/18 20:29:30 UTC

svn commit: r170790 - /incubator/derby/docs/trunk/src/ref/rrefjdbc80004.dita

Author: jta
Date: Wed May 18 11:29:29 2005
New Revision: 170790

URL: http://svn.apache.org/viewcvs?rev=170790&view=rev
Log:
DERBY-288 (http://issues.apache.org/jira/browse/DERBY-288):
Fixed display problem with "JDBC 2.0 Connection Methods Supported" table
in the Reference manual.

Modified:
    incubator/derby/docs/trunk/src/ref/rrefjdbc80004.dita

Modified: incubator/derby/docs/trunk/src/ref/rrefjdbc80004.dita
URL: http://svn.apache.org/viewcvs/incubator/derby/docs/trunk/src/ref/rrefjdbc80004.dita?rev=170790&r1=170789&r2=170790&view=diff
==============================================================================
--- incubator/derby/docs/trunk/src/ref/rrefjdbc80004.dita (original)
+++ incubator/derby/docs/trunk/src/ref/rrefjdbc80004.dita Wed May 18 11:29:29 2005
@@ -25,30 +25,18 @@
 </metadata></prolog>
 <refbody>
 <table expanse="page" frame="all"><title>JDBC 2.0 Connection Methods Supported</title>
-<tgroup cols="3" colsep="1" rowsep="1"><colspec colname="1" colnum="1" colwidth="20*"/>
-<colspec colname="2" colnum="2" colwidth="29*"/><colspec colname="3" colnum="3"
-colwidth="51*"/>
+<tgroup cols="2" colsep="1" rowsep="1"><colspec colname="1" colnum="1" colwidth="20*"/>
+<colspec colname="2" colnum="2" colwidth="29*"/>
 <thead>
 <row>
 <entry align="left" colname="1" valign="bottom">Returns</entry>
 <entry align="left" colname="2" valign="bottom">Signature</entry>
-<entry align="left" colname="3" valign="bottom">Implementation Notes</entry>
 </row>
 </thead>
 <tbody>
 <row>
 <entry colname="1"><i>Statement</i></entry>
 <entry colname="2"><i>createStatement( int resultSetType, int resultSetConcurrency)</i></entry>
-<entry colname="3" morerows="2"><i>ResultSet.TYPE_FORWARD_ONLY</i> and <i>ResultSet.TYPE_SCROLL_INSENSITIVE</i> are
-the only scrolling types supported. If you request <i>TYPE_SCROLL_SENSITIVE</i>, <ph
-conref="refconrefs.dita#prod/productshortname"></ph> issues an <i>SQLWarning</i> and
-returns a <i>TYPE_SCROLL_INSENSITIVE ResultSet</i>. <p> These methods support
-both <i>ResultSet.CONCUR_READ_ONLY</i> and <i>ResultSet.CONCUR_UPDATABLE</i> concurrencies.
-However, you can only request an updatable ResultSet that has a <i>TYPE_FORWARD_ONLY</i> scrolling
-type.  If you request an updatable ResultSet with <i>SCROLL_SENSITIVE</i> or <i>SCROLL_INSENSITIVE</i> types, <ph
-conref="refconrefs.dita#prod/productshortname"></ph> issues an <i>SQLWarning</i> and
-returns <i>TYPE_SCROLL_INSENSITIVE READ_ONLY ResultSet</i>.</p><p>(Use <i>ResultSet.getWarnings</i> to
-see warnings.)</p></entry>
 </row>
 <row>
 <entry colname="1"><i>PreparedStatement</i></entry>
@@ -62,6 +50,15 @@
 </tbody>
 </tgroup>
 </table>
+<section><title>Implementation notes</title><i>ResultSet.TYPE_FORWARD_ONLY</i> and <i>ResultSet.TYPE_SCROLL_INSENSITIVE</i> are
+the only scrolling types supported. If you request <i>TYPE_SCROLL_SENSITIVE</i>, <ph
+conref="refconrefs.dita#prod/productshortname"></ph> issues an <i>SQLWarning</i> and
+returns a <i>TYPE_SCROLL_INSENSITIVE ResultSet</i>. <p> These methods support
+both <i>ResultSet.CONCUR_READ_ONLY</i> and <i>ResultSet.CONCUR_UPDATABLE</i> concurrencies.
+However, you can only request an updatable ResultSet that has a <i>TYPE_FORWARD_ONLY</i> scrolling
+type.  If you request an updatable ResultSet with <i>SCROLL_SENSITIVE</i> or <i>SCROLL_INSENSITIVE</i> types, <ph
+conref="refconrefs.dita#prod/productshortname"></ph> issues an <i>SQLWarning</i> and
+returns <i>TYPE_SCROLL_INSENSITIVE READ_ONLY ResultSet</i>.</p><p>(Use <i>Connection.getWarnings</i> to
+see warnings.)</p></section>
 </refbody>
 </reference>
-