aboutsummaryrefslogtreecommitdiffstats
path: root/src/site/xdoc
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2016-09-11 01:29:49 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2016-09-11 01:29:49 +0000
commitf8212d111e3975c643bcd92c7bc8dfa5c4fd2261 (patch)
treeaf3334bcf7cbbf81c184b053e74a99d2bfc32e62 /src/site/xdoc
parent09a70b9f2465c39852784eb1b03049ed73512867 (diff)
downloadjackcess-f8212d111e3975c643bcd92c7bc8dfa5c4fd2261.tar.gz
jackcess-f8212d111e3975c643bcd92c7bc8dfa5c4fd2261.zip
misc cleanups; doc updates
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1034 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/site/xdoc')
-rw-r--r--src/site/xdoc/cookbook.xml38
1 files changed, 17 insertions, 21 deletions
diff --git a/src/site/xdoc/cookbook.xml b/src/site/xdoc/cookbook.xml
index 4ad5649..fca2519 100644
--- a/src/site/xdoc/cookbook.xml
+++ b/src/site/xdoc/cookbook.xml
@@ -243,13 +243,12 @@
.addColumn(new ColumnBuilder("StartDate", DataType.SHORT_DATE_TIME))
.toTable(db);
</source>
- </subsection>
- <p>
- That is a very simple Table. In the real world, we often need Indexes
- to speed up lookups and enforce uniqueness constraints. Adding the
- following to the previous example will make the "ID" column a primary
- key and enable speedier lookups on the "Name" column.
- </p>
+ <p>
+ That is a very simple Table. In the real world, we often need Indexes
+ to speed up lookups and enforce uniqueness constraints. Adding the
+ following to the previous example will make the "ID" column a primary
+ key and enable speedier lookups on the "Name" column.
+ </p>
<source>
// ... new TableBuilder( ...
.addIndex(new IndexBuilder(IndexBuilder.PRIMARY_KEY_NAME)
@@ -258,11 +257,12 @@
.addColumns("Name"))
// ... .toTable( ...
</source>
- <p>
- Don't forget to close the Database when you are finished building it
- and now you have a fresh, new Database on which to test some more
- recipes.
- </p>
+ <p>
+ Don't forget to close the Database when you are finished building it
+ and now you have a fresh, new Database on which to test some more
+ recipes.
+ </p>
+ </subsection>
</section>
<section name="Finding Stuff">
@@ -363,17 +363,13 @@
}
</source>
</subsection>
-
- <p>
- FIXME, writeme
- </p>
</section>
- <section name="Miscellaneous Examples">
- <p>
- FIXME, writeme
- </p>
- </section>
+ <!-- <section name="Miscellaneous Examples"> -->
+ <!-- <p> -->
+ <!-- FIXME, writeme -->
+ <!-- </p> -->
+ <!-- </section> -->
</body>
</document>