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 2014/05/12 16:51:59 UTC

svn commit: r1593986 - in /db/derby/docs/trunk/src/devguide: cdevspecialtfgetxxx.dita rdevconcepts713.dita

Author: chaase3
Date: Mon May 12 14:51:59 2014
New Revision: 1593986

URL: http://svn.apache.org/r1593986
Log:
DERBY-6236  Remove references to old JVMs (pre-Java 6) from the user guides

Modified 2 Developer's Guide topics.

Patch: DERBY-6236-5.diff

Modified:
    db/derby/docs/trunk/src/devguide/cdevspecialtfgetxxx.dita
    db/derby/docs/trunk/src/devguide/rdevconcepts713.dita

Modified: db/derby/docs/trunk/src/devguide/cdevspecialtfgetxxx.dita
URL: http://svn.apache.org/viewvc/db/derby/docs/trunk/src/devguide/cdevspecialtfgetxxx.dita?rev=1593986&r1=1593985&r2=1593986&view=diff
==============================================================================
--- db/derby/docs/trunk/src/devguide/cdevspecialtfgetxxx.dita (original)
+++ db/derby/docs/trunk/src/devguide/cdevspecialtfgetxxx.dita Mon May 12 14:51:59 2014
@@ -25,12 +25,8 @@ functions</title>
 <shortdesc>While scanning a
 <ph conref="../conrefs.dita#prod/productshortname"></ph>-style table function,
 <ph conref="../conrefs.dita#prod/productshortname"></ph> calls a preferred
-<i>getXXX()</i> method for each column, based on the column's data type. If
-<ph conref="../conrefs.dita#prod/productshortname"></ph> is running on a small
-device platform and presenting the JSR 169 interface to clients, then the
-methods which <ph conref="../conrefs.dita#prod/productshortname"></ph> calls are
-slightly different. This is because JSR 169 does not support BigDecimal.
-</shortdesc>
+<i>getXXX()</i> method for each column, based on the column's data
+type.</shortdesc>
 <prolog><metadata>
 <keywords><indexterm>Functions<indexterm>table function getXXX() methods</indexterm></indexterm>
 </keywords>
@@ -45,14 +41,12 @@ slightly different. This is because JSR 
 <desc>This table lists the preferred <i>getXXX()</i> method for each <ph conref="../conrefs.dita#prod/productshortname"></ph> data type.</desc>
 <tgroup cols="3" colsep="1" rowsep="1">
 <colspec colname="1" colnum="1" colwidth="50*"/>
-<colspec colname="2" colnum="2" colwidth="25*"/>
-<colspec colname="3" colnum="3" colwidth="25*"/>
+<colspec colname="2" colnum="2" colwidth="50*"/>
 
 <thead>
 <row valign="bottom">
 <entry colname="1">Column Type Declared by CREATE FUNCTION</entry>
-<entry colname="2"><i>getXXX()</i> Method Called by <ph conref="../conrefs.dita#prod/productshortname"></ph> for JDBC 3.0 and 4.0</entry>
-<entry colname="3"><i>getXXX()</i> Method Called by <ph conref="../conrefs.dita#prod/productshortname"></ph> for JSR 169</entry>
+<entry colname="2"><i>getXXX()</i> Method Called by <ph conref="../conrefs.dita#prod/productshortname"></ph></entry>
 </row>
 </thead>
 
@@ -62,127 +56,106 @@ slightly different. This is because JSR 
 <row>
 <entry colname="1">BIGINT</entry>
 <entry colname="2"><i>getLong()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">BLOB</entry>
 <entry colname="2"><i>getBlob()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">CHAR</entry>
 <entry colname="2"><i>getString()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">CHAR FOR BIT DATA</entry>
 <entry colname="2"><i>getBytes()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">CLOB</entry>
 <entry colname="2"><i>getClob()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">DATE</entry>
 <entry colname="2"><i>getDate()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">DECIMAL</entry>
 <entry colname="2"><i>getBigDecimal()</i></entry>
-<entry colname="3"><i>getString()</i></entry>
 </row>
 
 <row>
 <entry colname="1">DOUBLE</entry>
 <entry colname="2"><i>getDouble()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">DOUBLE PRECISION</entry>
 <entry colname="2"><i>getDouble()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">FLOAT</entry>
 <entry colname="2"><i>getDouble()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">INTEGER</entry>
 <entry colname="2"><i>getInt()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">LONG VARCHAR</entry>
 <entry colname="2"><i>getString()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">LONG VARCHAR FOR BIT DATA</entry>
 <entry colname="2"><i>getBytes()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">NUMERIC</entry>
 <entry colname="2"><i>getBigDecimal()</i></entry>
-<entry colname="3"><i>getString()</i></entry>
 </row>
 
 <row>
 <entry colname="1">REAL</entry>
 <entry colname="2"><i>getFloat()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">SMALLINT</entry>
 <entry colname="2"><i>getShort()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">TIME</entry>
 <entry colname="2"><i>getTime()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">TIMESTAMP</entry>
 <entry colname="2"><i>getTimestamp()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">VARCHAR</entry>
 <entry colname="2"><i>getString()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">VARCHAR FOR BIT DATA</entry>
 <entry colname="2"><i>getBytes()</i></entry>
-<entry colname="3">Same</entry>
 </row>
 
 <row>
 <entry colname="1">XML</entry>
 <entry colname="2">Not supported</entry>
-<entry colname="3">Not supported</entry>
 </row>
 
 </tbody>

Modified: db/derby/docs/trunk/src/devguide/rdevconcepts713.dita
URL: http://svn.apache.org/viewvc/db/derby/docs/trunk/src/devguide/rdevconcepts713.dita?rev=1593986&r1=1593985&r2=1593986&view=diff
==============================================================================
--- db/derby/docs/trunk/src/devguide/rdevconcepts713.dita (original)
+++ db/derby/docs/trunk/src/devguide/rdevconcepts713.dita Mon May 12 14:51:59 2014
@@ -82,12 +82,8 @@ desired.</entry>
 accessing the same <ph conref="../conrefs.dita#prod/productshortname"></ph> database.
 Each user application has its own connection or connections to the database.</p></entry>
 <entry colname="2">Not possible. Only one application can access a database
-at a time, and only one application can access a specific system at a time.
-If <ph conref="../conrefs.dita#prod/productshortname"></ph> is running on a
-small device platform and presenting the JSR 169 interface to clients, it might
-not prevent multiple applications from concurrently accessing the same <ph
-conref="../conrefs.dita#prod/productshortname"></ph> system, but do not allow
-this because such access can corrupt the databases involved.</entry>
+at a time, and only one application can access a specific system at a
+time.</entry>
 <entry colname="3">Only one server should access a database at a time. Multiple
 remote client applications can access the same server, and thus can access
 the same database at the same time through that server.</entry>