You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Jean T. Anderson (JIRA)" <de...@db.apache.org> on 2006/09/14 01:17:24 UTC

[jira] Updated: (DERBY-1271) Release documentation for JDBC4 release

     [ http://issues.apache.org/jira/browse/DERBY-1271?page=all ]

Jean T. Anderson updated DERBY-1271:
------------------------------------

    Attachment: derby1271-2.diff
                derby1271-2-html.zip

I modified just 2 files (the summary page and one detail page) in the 10.2 doc branch to add a JDBC 4 notice. Here are the files to compare to:
http://db.apache.org/derby/docs/10.2/ref/rrefjdbc4_0summary.html
http://db.apache.org/derby/docs/10.2/ref/rrefjdbc4_0statement.html

derby1271-2.diff  - patch to apply to the 10.2 doc branch
derby1271-2-html.zip - html for review

I tried to shorten the notice and here's what I came up with, and I think it would be good to shorten more:

JDBC 4.0 functionality is not enabled in this Derby release because JDBC 4.0 is part of Java SE 6, which was not generally available when the Derby release was produced. When Derby is used with a Java SE 6 virtual machine, JDBC 3.0 will be available. JDBC 4.0 will only be available to developers who download Java SE 6 and use it to add JDBC 4.0 support to Derby. The Release Notes provide details on how to build this optional JDBC 4.0 functionality, but the result might not be compatible with the final version of JDBC 4.0. When Java SE 6 becomes generally available a follow-on Derby release will include final JDBC 4.0 functionality.

Notes:
(1) I think it's helpful to link JDBC 4.0 to JDK 1.6 because I don't know how obvious that linkage is to users and developers out there.
(2) I put the notice in an "attention" section. I looked at the dita dtd source and these types are available:
    note | tip | fastpath | restriction | important | remember| attention| caution | danger| other
Does "attention"work? wouldsome other format be better? If somebody dita-savvy can produce better format for one sample file, I'm happy to transfer to the files that need it.
 
Please wordsmith! Especially please suggest how it can be shortened -- I think it's too long.

thanks,

 -jean


> Release documentation for JDBC4 release
> ---------------------------------------
>
>                 Key: DERBY-1271
>                 URL: http://issues.apache.org/jira/browse/DERBY-1271
>             Project: Derby
>          Issue Type: Improvement
>          Components: Documentation, JDBC
>    Affects Versions: 10.2.1.0
>            Reporter: Rick Hillegas
>         Assigned To: Jean T. Anderson
>             Fix For: 10.2.1.0
>
>         Attachments: adminGuide_v01.tar, derby-1271_adminGuide_v01.diff, derby-1271_copyrights.diff, derby-1271_copyrights_v02.diff, derby-1271_devGuide_v01.diff, derby-1271_refGuide_v01.diff, derby-1271_refGuide_v01.tar, derby-1271_toolsGuide_v01.diff, derby1271-2-html.zip, derby1271-2.diff, devGuide_v01.tar, toolsGuide_v01.tar
>
>
> We can't check in any of this work until we understand how our release trains line up. However, the JDBC4-bearing release will need the following documentation:
> 1) Changes to the user guides. These need to be understood. We can analyze the scope of these changes without checking anything in yet.
> 2) Summary page which explains what pieces of JDBC4 we tackled and what we passed over.
> 3) Verbiage for the Release Notes.
> USER GUIDES
> Admin Guide
>   Part One...How to start an embedded server from an application
>     For JDBC4, we can omit the Class.forName() line because
>     of Driver autoloading.
>   Part One...Embedded server example
>     For JDBC4, we can omit the Class.forName() line because
>     of Driver autoloading.
>   Part One...Network client driver examples
>     For JDBC4, we can omit the Class.forName() line because
>     of Driver autoloading.
>   Part One...Accessing the Network Server by using a DataSource
>     For JDBC4, we have different DataSources: ClientDateSource40
>     and ClientConnectionPoolDataSource40.
>   Part One...Using the Derby ij tool with the Network Server
>     In case the DRIVER command ends up being needed pre-JDBC4,
> 	we should note that you don't need it under JDBC4 because
> 	of Driver autoloading.
>   Part One...The NsSample sample program
>     Change NsSample to demonstrate driver autoloading under JDBC4.
>   Part One...Overview of the SimpleNetworkServerSample program
>     Change SimpleNetworkServerSample to demonstrate driver autoloading under JDBC4.
>   Part One...Connecting a client to the Network Server with the SimpleNetworkClientSample program
>     Change SimpleNetworkClientSample to demonstrate driver autoloading under JDBC4.
> Developer's Guide
>   JDBC applications and Derby basics
>     Derby embedded basics
>       Derby JDBC driver
>         Note that you don't need Class.forName() in JDBC4.
>   Derby embedded basics
>     Embedded Derby JDBC driver
>         Note that you don't need Class.forName() in JDBC4.
>     Starting Derby as an embedded database
>         Note that you don't need Class.forName() or the jdbc.drivers property in JDBC4.
>   Controlling Derby application behavior
>     Working with Derby SQLExceptions in an application
>       Note that with JDBC4, these are refined subclasses
>       Example of processing SQLExceptions
>         Say something about SQLException.getCause()
>   Using Derby as a J2EE resource manager
>     Classes that pertain to resource managers
>       Mention the JDBC4 variants of these classes.
>     Getting a DataSource
>       Include example using JDBC4 variants of these classes.
>     Shutting down or creating a database
>       Include example using JDBC4 variants of these classes.
> Getting Started Guide
>   No changes necessary.
> Reference Guide
>   Derby exception messages and SQL states
>     Describe SQLFeatureNotSupportedException and its SQLStates.
>     SQLState and error message reference
>       Mention new unimplementedFeature exceptions.
>       What to do about new SQLStates.
>   JDBC Reference
>     "conforms to the JDBC 2.0 and 3.0 APIs"
>     ->
>     "conforms to the JDBC 2.0, 3.0, and 4.0 APIs"
>     java.sql.Driver
>       Amend this to note driver autoloading for JDBC4.
>     java.sql.Connection
>       Connection functionality not supported
>         List unsupported Connection methods.
>     java.sql.DatabaseMetaData
>       Columns in the ResultSet returned by getProcedureColumns
>         Add new columns added by JDBC4
>     java.sql.Statement
>         Note that Derby does not support the execute() and
>         executeQuery() overloads which return autogenerated keys.
>     Prepared statements and streaming columns
>         Note that with JDBC4, you can specify length as a long
>         or even omit the length when setting LOB streams.
>     java.sql.ResultSetMetaData
>         Waiting for feedback from Dag on whether we still don't
>         support isDefinitelyWritable(), isReadOnly(), and
>         isWritable().
>     java.sql.Blob and java.sql.Clob
>         Right now this section says that Derby supports the methods in
>         the Blob and Clob interfaces. This is not true. We should
>         describe the discrepancies, including any additional methods added
>         by JDBC4.
>     JDBC 4.0-only features
>       Add this new section, with a subsection for each SQL interface
>       that changed in JDBC4. The subsections should list new methods
>       that were added.
>     Derby API
>       JDBC implementation classes
>         Data Source Classes
>           List the JDBC4 versions of these classes
> Tools Guide
>   Using ij
>     Getting started with ij
>       Running ij scripts
>         You don't need to specify the Derby drivers
>         on the command line even under JDBC2.
>   ij properties reference
>     ij.dataSource
>       This is the DataSource for embedded JDBC3. Note that
>       this would be different if you are running under
>       JDBC4.
> Tuning Guide
>   No changes necessary.
> Working With Derby Guide
>   Activity 3: Run a JDBC program using the Embedded driver
>     The WwdEmbedded program
>       Start the Derby engine
>         Note that this step (Class.forName() on the embedded driver)
>         is not necessary if you are running on jdk 1.6 or higher.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Re: [jira] Updated: (DERBY-1271) Release documentation for JDBC4 release

Posted by Myrna van Lunteren <m....@gmail.com>.
On 9/13/06, Jean T. Anderson <jt...@bristowhill.com> wrote:
> Jean T. Anderson (JIRA) wrote:
> ...
> > I tried to shorten the notice and here's what I came up with, and I think it would be good to shorten more:
> >
> > JDBC 4.0 functionality is not enabled in this Derby release because JDBC 4.0 is part of Java SE 6, which was not generally available when the Derby release was produced. When Derby is used with a Java SE 6 virtual machine, JDBC 3.0 will be available. JDBC 4.0 will only be available to developers who download Java SE 6 and use it to add JDBC 4.0 support to Derby. The Release Notes provide details on how to build this optional JDBC 4.0 functionality, but the result might not be compatible with the final version of JDBC 4.0. When Java SE 6 becomes generally available a follow-on Derby release will include final JDBC 4.0 functionality.
>
> "provide details on" -> "explain"
>
> :-)
>
> truly, the notice looks lengthy in the html output. less is more.
>
>  -jean
>
Ok, taking that and massaging...How about:

This release includes JDBC 4.0 functionality based on a pre-release of
Java SE 6. By default, when Derby is used with a Java SE 6 virtual
machine, JDBC 3.0 will be available. The Release Notes provide details
on how to build the optional JDBC 4.0 functionality after downloading
Java SE 6, but the result might not be compatible with the final
version of JDBC 4.0. When Java SE 6 becomes generally available a
subsequent Derby release will include support for the final JDBC 4.0.
functionality.

Myrna

Re: [jira] Updated: (DERBY-1271) Release documentation for JDBC4 release

Posted by "Jean T. Anderson" <jt...@bristowhill.com>.
Jean T. Anderson (JIRA) wrote:
...
> I tried to shorten the notice and here's what I came up with, and I think it would be good to shorten more:
> 
> JDBC 4.0 functionality is not enabled in this Derby release because JDBC 4.0 is part of Java SE 6, which was not generally available when the Derby release was produced. When Derby is used with a Java SE 6 virtual machine, JDBC 3.0 will be available. JDBC 4.0 will only be available to developers who download Java SE 6 and use it to add JDBC 4.0 support to Derby. The Release Notes provide details on how to build this optional JDBC 4.0 functionality, but the result might not be compatible with the final version of JDBC 4.0. When Java SE 6 becomes generally available a follow-on Derby release will include final JDBC 4.0 functionality.

"provide details on" -> "explain"

:-)

truly, the notice looks lengthy in the html output. less is more.

 -jean