dirkv 02/01/03 13:42:31
Modified: src/doc howto-jdbcstore.xml
Log:
layout:
- index database scripts
- split database tables section into 2 columns
Revision Changes Path
1.10 +28 -23 jakarta-slide/src/doc/howto-jdbcstore.xml
Index: howto-jdbcstore.xml
===================================================================
RCS file: /home/cvs/jakarta-slide/src/doc/howto-jdbcstore.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- howto-jdbcstore.xml 29 Nov 2001 23:22:00 -0000 1.9
+++ howto-jdbcstore.xml 3 Jan 2002 21:42:31 -0000 1.10
@@ -37,7 +37,7 @@
</section>
- <section name="Tables">
+ <section name="Tables" split-subsections="true">
<p>
This section presents the database schema which is used by the JDBC
@@ -184,13 +184,16 @@
</subsection>
</section>
-
- <section name="Hypersonic SQL">
-
+
+ <section name="Database creation scripts">
<p>
- The initialization script for hSQL is the one which is run at the
- startup of the store.
+ The initialization script for Hypersonic SQL is the one which is run at the
+ startup of the default JDBC store.
</p>
+
+ <subsection-index title="Supported databases:"/>
+
+ <subsection name="Hypersonic SQL">
<p>
<pre>
@@ -235,9 +238,9 @@
</pre>
</p>
- </section>
+ </subsection>
- <section name="mySQL">
+ <subsection name="mySQL">
<p>
<pre>
@@ -281,9 +284,9 @@
</pre>
</p>
- </section>
+ </subsection>
- <section name="PostgreSQL">
+ <subsection name="PostgreSQL">
<p>
<pre>
@@ -328,9 +331,9 @@
</pre>
</p>
- </section>
+ </subsection>
- <section name="Oracle 8i">
+ <subsection name="Oracle 8i">
<p>
<pre>
@@ -374,9 +377,9 @@
</pre>
</p>
- </section>
+ </subsection>
- <section name="Cloudscape">
+ <subsection name="Cloudscape">
<p>
<pre>
@@ -420,9 +423,9 @@
</pre>
</p>
- </section>
+ </subsection>
- <section name="Microsoft SQL Server">
+ <subsection name="Microsoft SQL Server">
<p>
<pre>
@@ -440,16 +443,17 @@
create table locks(id uri, object uri, subject uri, type uri,
expirationdate varchar(15), inheritable int, xexclusive int);
-create table revisions(uri uri primary key, isversioned int, initialrevision
varchar(10) );
+create table revisions(uri uri primary key,
+ isversioned int, initialrevision varchar(10) );
-create table workingrevision(uri uri, baserevision varchar(20), xnumber
- varchar(20) );
+create table workingrevision(uri uri, baserevision varchar(20),
+ xnumber varchar(20) );
-create table latestrevisions(uri uri, branchname text, xnumber
- varchar(20) );
+create table latestrevisions(uri uri, branchname text,
+ xnumber varchar(20) );
-create table branches(uri uri, xnumber varchar(20), childnumber
- varchar(20) );
+create table branches(uri uri, xnumber varchar(20),
+ childnumber varchar(20) );
create table revision(uri uri, xnumber varchar(20), branchname text);
@@ -462,6 +466,7 @@
</pre>
</p>
+ </subsection>
</section>
</body>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>