diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2006-11-23 04:15:49 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2006-11-23 04:15:49 +0000 |
commit | d4ba27d7aaa42ae874671e79e890f8957530976a (patch) | |
tree | e4289d3aeac44aca00b71315a05a9212edd890c5 /xdocs | |
parent | c1f7c9fdc130b58ff94500cb5f44f56de8921e69 (diff) | |
download | jackcess-d4ba27d7aaa42ae874671e79e890f8957530976a.tar.gz jackcess-d4ba27d7aaa42ae874671e79e890f8957530976a.zip |
tweak example
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@137 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'xdocs')
-rw-r--r-- | xdocs/index.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xdocs/index.xml b/xdocs/index.xml index a1b3219..21d0f29 100644 --- a/xdocs/index.xml +++ b/xdocs/index.xml @@ -23,7 +23,7 @@ <p> <ul> <li>Displaying the contents of a table: - <pre>Database.open(new File("my.mdb")).getTable("MyTable").display();</pre> + <pre>System.out.println(Database.open(new File("my.mdb")).getTable("MyTable").display());</pre> </li> <li>Creating a new table and writing data into it: <pre>Database db = Database.create(new File("new.mdb")); |