diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2014-10-11 13:55:16 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2014-10-11 13:55:16 +0000 |
commit | ec37e5c5731303188ef60f3aef064a51bb585747 (patch) | |
tree | 4a8763da2591d8b729ad39801679262a23e754e7 /src | |
parent | a5b28905c516f3789a263c0b64da25d7a81ada12 (diff) | |
download | jackcess-ec37e5c5731303188ef60f3aef064a51bb585747.tar.gz jackcess-ec37e5c5731303188ef60f3aef064a51bb585747.zip |
fix code example
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@889 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src')
-rw-r--r-- | src/site/xdoc/cookbook.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/site/xdoc/cookbook.xml b/src/site/xdoc/cookbook.xml index 6f13d27..c419790 100644 --- a/src/site/xdoc/cookbook.xml +++ b/src/site/xdoc/cookbook.xml @@ -223,7 +223,7 @@ File file = new File("test.mdb"); Database db = new DatabaseBuilder(file) .setFileFormat(Database.FileFormat.V2000) - .open(); + .create(); </source> </subsection> <subsection name="Creating a Table"> |