diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2013-02-23 16:23:59 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2013-02-23 16:23:59 +0000 |
commit | f7b8c4a72b75b9a0f0b724a186abaa2586e64574 (patch) | |
tree | a72911fce97ac1c6dd762870b9759c1ef926c182 /src/site/xdoc/index.xml | |
parent | f3a3751ea49dadc76c9f1544dc17a7dba3b60945 (diff) | |
download | jackcess-f7b8c4a72b75b9a0f0b724a186abaa2586e64574.tar.gz jackcess-f7b8c4a72b75b9a0f0b724a186abaa2586e64574.zip |
add cookbook reference to front page
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@662 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/site/xdoc/index.xml')
-rw-r--r-- | src/site/xdoc/index.xml | 5 |
1 files changed, 5 insertions, 0 deletions
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()); |