aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/site/xdoc/cookbook.xml12
-rw-r--r--src/site/xdoc/index.xml5
2 files changed, 17 insertions, 0 deletions
diff --git a/src/site/xdoc/cookbook.xml b/src/site/xdoc/cookbook.xml
index 84ebe94..b32e725 100644
--- a/src/site/xdoc/cookbook.xml
+++ b/src/site/xdoc/cookbook.xml
@@ -264,5 +264,17 @@
</p>
</section>
+ <section name="Finding Stuff">
+ <p>
+ FIXME, writeme
+ </p>
+ </section>
+
+ <section name="Miscellaneous Examples">
+ <p>
+ FIXME, writeme
+ </p>
+ </section>
+
</body>
</document>
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index bbd7f91..4b7e2f0 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -20,6 +20,11 @@
</p>
</section>
<section name="Sample code">
+ <p>
+ Here are a few snippets of code to whet your appetite. For more
+ extensive examples, checkout the <a href="cookbook.html">cookbook</a>. And, since Jackcess is heavily
+ unit tested, you can find even more example code in the <a href="xref-test/index.html">unit tests</a>.
+ </p>
<ul>
<li>Displaying the contents of a table:
<source>System.out.println(Database.open(new File("my.mdb")).getTable("MyTable").display());