Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 8563 invoked from network); 10 Apr 2007 20:51:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Apr 2007 20:51:36 -0000 Received: (qmail 62898 invoked by uid 500); 10 Apr 2007 20:51:43 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 62867 invoked by uid 500); 10 Apr 2007 20:51:43 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 62856 invoked by uid 99); 10 Apr 2007 20:51:42 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Apr 2007 13:51:42 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Apr 2007 13:51:36 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id CE8B41A9838; Tue, 10 Apr 2007 13:51:15 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r527293 - in /db/derby/docs/trunk/src/ref: rrefjdbc4_0connection.dita rrefjdbc4_0dataSource.dita Date: Tue, 10 Apr 2007 20:51:15 -0000 To: derby-commits@db.apache.org From: scotsmatrix@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070410205115.CE8B41A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: scotsmatrix Date: Tue Apr 10 13:51:14 2007 New Revision: 527293 URL: http://svn.apache.org/viewvc?view=rev&rev=527293 Log: DERBY-2511: Removed inaccurate sentences regarding JDBC 4.0. This patch was contributed by Kim Haase. Modified: db/derby/docs/trunk/src/ref/rrefjdbc4_0connection.dita db/derby/docs/trunk/src/ref/rrefjdbc4_0dataSource.dita Modified: db/derby/docs/trunk/src/ref/rrefjdbc4_0connection.dita URL: http://svn.apache.org/viewvc/db/derby/docs/trunk/src/ref/rrefjdbc4_0connection.dita?view=diff&rev=527293&r1=527292&r2=527293 ============================================================================== --- db/derby/docs/trunk/src/ref/rrefjdbc4_0connection.dita (original) +++ db/derby/docs/trunk/src/ref/rrefjdbc4_0connection.dita Tue Apr 10 13:51:14 2007 @@ -22,8 +22,8 @@ java.sql.Connection interface: JDBC 4.0 features +Connection interface LOB creation -Ease of development Validity tracking @@ -36,10 +36,6 @@
  • LOB creation - New methods, createBlob() and createClob() let you create empty Blobs and Clobs, which you can then fill up before stuffing into a column.
  • -
  • Ease of development - JDBC 4.0 introduces DataSet, a simple -mechanism to iterate through a table. You obtain -a DataSet by passing an annotated query to -your Connection's createQueryObject method.
  • Validity tracking - The isValid method tells you whether your Connection is still alive.
  • Modified: db/derby/docs/trunk/src/ref/rrefjdbc4_0dataSource.dita URL: http://svn.apache.org/viewvc/db/derby/docs/trunk/src/ref/rrefjdbc4_0dataSource.dita?view=diff&rev=527293&r1=527292&r2=527293 ============================================================================== --- db/derby/docs/trunk/src/ref/rrefjdbc4_0dataSource.dita (original) +++ db/derby/docs/trunk/src/ref/rrefjdbc4_0dataSource.dita Tue Apr 10 13:51:14 2007 @@ -22,29 +22,22 @@ javax.sql.DataSource interface: JDBC 4.0 features -Ease of development -DataSource +DataSource interface

    -JDBC 4.0 introduces a simpler mechanism for -iterating through a table. You use this mechanism by passing an -annotated query to your DataSource's createQueryObject method. -To expose this createQueryObject method, - -adds new JDBC 4.0-specific DataSources. Use these DataSources if your + has +added new JDBC 4.0-specific DataSources. Use these DataSources if your application runs on JDK 1.6 or higher.

    • org.apache.derby.jdbc.EmbeddedConnectionPoolDataSource40
    • org.apache.derby.jdbc.EmbeddedDataSource40
    • -
    • org.apache.derby.jdbc.EmbeddedDriver
    • org.apache.derby.jdbc.EmbeddedXADataSource40
    • org.apache.derby.jdbc.ClientConnectionPoolDataSource40
    • org.apache.derby.jdbc.ClientDataSource40
    • -
    • org.apache.derby.jdbc.ClientDriver
    • org.apache.derby.jdbc.ClientXADataSource40