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 fu...@apache.org on 2006/08/05 00:03:56 UTC

svn commit: r428899 - in /db/derby/code/trunk: java/demo/demo.html java/demo/navbar.html tools/release/build.xml

Author: fuzzylogic
Date: Fri Aug  4 15:03:56 2006
New Revision: 428899

URL: http://svn.apache.org/viewvc?rev=428899&view=rev
Log:
DERBY-1319: Document the toursdb schema.

Committed for Myrna Van Lunteren <m....@gmail.com>

Modified:
    db/derby/code/trunk/java/demo/demo.html
    db/derby/code/trunk/java/demo/navbar.html
    db/derby/code/trunk/tools/release/build.xml

Modified: db/derby/code/trunk/java/demo/demo.html
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/demo/demo.html?rev=428899&r1=428898&r2=428899&view=diff
==============================================================================
--- db/derby/code/trunk/java/demo/demo.html (original)
+++ db/derby/code/trunk/java/demo/demo.html Fri Aug  4 15:03:56 2006
@@ -14,8 +14,11 @@
                                 creates a database, and loads some data.</p></LI>
 </LI>
 <LI><A href="nserverdemo/readme.html">Network Server Sample Programs</A>
-	<p class="BodyRelative">Two examples are provided to demonstrate how to obtain an <em class="Emphasis">embedded connection</em> and <em class="Emphasis">client connections</em> using the Network Server to connect to the same database. An embedded connection is a connection to a database that is booted in the same JVM as the application. Client applications that require a database connection across the network use the network server protocol (DRDA) to connect to the Network Server. This type of connection is referred to as a client connection.</p></LI></LI>
-
+	<p class="BodyRelative">Two examples are provided to demonstrate how to obtain an <em class="Emphasis">embedded connection</em> and <em class="Emphasis">client connections</em> using the Network Server to connect to the same database. An embedded connection is a connection to a database that is booted in the same JVM as the application. Client applications that require a database connection across the network use the network server protocol (DRDA) to connect to the Network Server. This type of connection is referred to as a client connection.</p></LI>
+<LI><A href="toursdb/toursdb_readme.html">ToursDB sample database schema</a>
+    <p class="BodyRelative">The toursdb is provided as an example and demo database to illustrate some functionality of the Derby RDBMS. Many of the examples in the Derby documentation use tables that exist in the toursdb database. The document describes the tables, the names and types of columns in those tables, and the constraints, indexes, and triggers in the database.
+    </p>
+</li>
 </UL>
 
 </BODY>

Modified: db/derby/code/trunk/java/demo/navbar.html
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/demo/navbar.html?rev=428899&r1=428898&r2=428899&view=diff
==============================================================================
--- db/derby/code/trunk/java/demo/navbar.html (original)
+++ db/derby/code/trunk/java/demo/navbar.html Fri Aug  4 15:03:56 2006
@@ -10,6 +10,7 @@
 <p class="NavBar"><a href="demo.html" target="mainPage">Demo home</a></li></p>
 <p class="NavBar1"><a href="simple/example.html" target="mainPage">Simple</a></p>
 <p class="NavBar1"><a href="nserverdemo/readme.html" target="mainPage">Network Server Sample Programs</a></p>
+<p class="NavBar1"><a href="toursdb/toursdb_readme.html" target="mainPage">ToursDB sample database schema</a></p>
 <p class="NavBar"><a href="http://db.apache.org/derby/manuals/index.html" target="_top">Documentation Home</a></p>
 
 </BODY>

Modified: db/derby/code/trunk/tools/release/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/tools/release/build.xml?rev=428899&r1=428898&r2=428899&view=diff
==============================================================================
--- db/derby/code/trunk/tools/release/build.xml (original)
+++ db/derby/code/trunk/tools/release/build.xml Fri Aug  4 15:03:56 2006
@@ -63,6 +63,8 @@
                   excludes="**/build.xml,toursdb/toursdb**,toursdb/derby.log"/>
       <zipfileset file="${derby.demo.src.dir}/toursdb/toursdb.xml"
                   fullpath="${derby.bin}/demo/programs/toursdb/build.xml"/>
+      <zipfileset file="${derby.demo.src.dir}/toursdb/toursdb_readme.html"
+                  fullpath="${derby.bin}/demo/programs/toursdb/toursdb_readme.html"/>
       <zipfileset dir="${basedir}/classes" includes="SimpleApp.class"
                   prefix="${derby.bin}/demo/programs/simple"/>
       <zipfileset dir="${basedir}/classes" includes="SimpleNetwork*.class"
@@ -98,6 +100,8 @@
                   excludes="**/build.xml,toursdb/toursdb**,toursdb/derby.log"/>
       <tarfileset file="${derby.demo.src.dir}/toursdb/toursdb.xml"
                   fullpath="${derby.bin}/demo/programs/toursdb/build.xml"/>
+      <tarfileset file="${derby.demo.src.dir}/toursdb/toursdb_readme.html"
+                  fullpath="${derby.bin}/demo/programs/toursdb/toursdb_readme.html"/>
       <tarfileset dir="${basedir}/classes" includes="SimpleApp.class"
                   prefix="${derby.bin}/demo/programs/simple"/>
       <tarfileset dir="${basedir}/classes" includes="SimpleNetwork*.class"