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/02/12 21:44:32 UTC

svn commit: r377240 - in /db/derby/code/trunk: build.xml java/engine/org/apache/derby/jdbc/package.html published_api_overview.html

Author: djd
Date: Sun Feb 12 12:44:32 2006
New Revision: 377240

URL: http://svn.apache.org/viewcvs?rev=377240&view=rev
Log:
Add an overview page to the published api javadoc and
an overview for the JDBC package.

Added:
    db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html   (with props)
    db/derby/code/trunk/published_api_overview.html   (with props)
Modified:
    db/derby/code/trunk/build.xml

Modified: db/derby/code/trunk/build.xml
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/build.xml?rev=377240&r1=377239&r2=377240&view=diff
==============================================================================
--- db/derby/code/trunk/build.xml (original)
+++ db/derby/code/trunk/build.xml Sun Feb 12 12:44:32 2006
@@ -543,10 +543,11 @@
              classpath="${compile.classpath};${osgi};${servlet24};${out.dir}"
              breakiterator="true"
              destdir="${out.javadoc.dir}/publishedapi"
+    	     Overview="${basedir}/published_api_overview.html"
              Windowtitle="Apache Derby ${major}.${minor} API Documentation"
              Doctitle="Apache Derby ${major}.${minor} API Documentation"
              Footer="${javadoc.Footer}"
-             bottom="Apache Derby ${major}.${minor} API Documentation  -  <i>Copyright © 1997,2005 The Apache Software Foundation or its licensors, as applicable.</i>">
+             bottom="Apache Derby ${major}.${minor} API Documentation  -  <i>Copyright © 1997,2006 The Apache Software Foundation or its licensors, as applicable.</i>">
       <fileset dir="${derby.engine.src.dir}"
                includesfile="${javadoctools.dir}/publishedapi.ant"/>
       <fileset dir="${derby.client.src.dir}"

Added: db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html?rev=377240&view=auto
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html (added)
+++ db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html Sun Feb 12 12:44:32 2006
@@ -0,0 +1,25 @@
+<body>
+JDBC driver and data source implementations.
+<P>
+Client/Remote driver and data sources, used to connect to the network server
+<UL>
+<LI> <B>ClientDriver</B> - Type 4 JDBC driver
+<LI> <B>ClientDataSource</B> - Data source
+<LI> <B>ClientConnectionPoolDataSource</B> - Connection pooling data source
+<LI> <B>ClientXADataSource</B> - XA data source
+</UL>
+<P>
+Embedded driver and data sources, used when the database engine is embedded with the application.
+<UL>
+<LI> <B>EmbeddedDriver</B> - Type 4 JDBC driver
+<LI> <B>EmbeddedDataSource</B> - Data source for J2SE and J2EE
+<LI> <B>EmbeddedSimpleDataSource</B> - Data source for J2ME/CDC/Foundation and J2SE
+<LI> <B>EmbeddedConnectionPoolSource</B> - Connection pooling data source
+<LI> <B>EmbeddedXASource</B> - XA data source
+</UL>
+<P>
+Derby's JDBC api is defined by its entry point classes, the drivers and data source implementations
+and the standard JDBC api definitions of the <code>java.sql</code> and <code>javax.sql</code> classes.
+Derby does not provide non-standard extensions to standard JDBC classes such as <code>Connection</code>,
+to encourage portable JDBC applications.
+</body>

Propchange: db/derby/code/trunk/java/engine/org/apache/derby/jdbc/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: db/derby/code/trunk/published_api_overview.html
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/published_api_overview.html?rev=377240&view=auto
==============================================================================
--- db/derby/code/trunk/published_api_overview.html (added)
+++ db/derby/code/trunk/published_api_overview.html Sun Feb 12 12:44:32 2006
@@ -0,0 +1,23 @@
+<body>
+Apache Derby is a pure Java, standards-based relational database engine.
+Derby provides an easy to use data management solution for
+software developers with zero administration for end users.
+Derby runs on any J2SE 1.3 or higher virtual machine and supports J2ME/CDC/Foundation.
+Derby's database format is platform independent allowing databases to be copied to
+any machine type.
+<P>
+Apache Derby is an open source subproject of the Apache DB project,
+licensed under the Apache License, Version 2.0.
+<BR>
+<a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a>
+
+<P>
+You can find Derby on the web at:
+<BR>
+ <a href="http://db.apache.org/derby/">http://db.apache.org/derby/</a>
+
+<P>
+Apache Derby releases can be downloaded from the following page:
+<BR>
+<a href="http://db.apache.org/derby/derby_downloads.html">http://db.apache.org/derby/derby_downloads.html</a>
+</body>

Propchange: db/derby/code/trunk/published_api_overview.html
------------------------------------------------------------------------------
    svn:eol-style = native