]> source.dussan.org Git - jackcess.git/commitdiff
add cookbook reference to front page
authorJames Ahlborn <jtahlborn@yahoo.com>
Sat, 23 Feb 2013 16:23:59 +0000 (16:23 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Sat, 23 Feb 2013 16:23:59 +0000 (16:23 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@662 f203690c-595d-4dc9-a70b-905162fa7fd2

src/site/xdoc/cookbook.xml
src/site/xdoc/index.xml

index 84ebe9417b17082a36cd8f79f67945c0e424ece4..b32e725865ae225fd13960622c6a156ccdc4a422 100644 (file)
       </p>
     </section>
 
+    <section name="Finding Stuff">
+      <p>
+        FIXME, writeme
+      </p>
+    </section>
+
+    <section name="Miscellaneous Examples">
+      <p>
+        FIXME, writeme
+      </p>
+    </section>
+
   </body>
 </document>
index bbd7f9169ad7a4ecfd98bbe80eccafd677ff1cec..4b7e2f06149e098a7b957db1d46871d9de25cfe6 100644 (file)
       </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());