blob: 854ea2346f86528c9a130784ba18723ec544f2a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<?xml version="1.0"?>
<document>
<properties>
<author email="javajedi@users.sf.net">Tim McCune</author>
<title>Java Library for MS Access</title>
</properties>
<body>
<section name="Jackcess">
<p>
Jackcess is a pure Java library for reading from and writing to MS
Access databases. It is part of the <a href="http://openhms.sourceforge.net/">OpenHMS</a> project from <a href="http://www.healthmarketscience.com/">Health Market Science, Inc.</a>. It is not an application. There is no GUI. It's a
library, intended for other developers to use to build Java
applications. Jackcess is licensed under the
<a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">GNU Lesser General Public License</a>.
Take a look
at our <a href="faq.html">Frequently Asked Questions</a>
for more info.
</p>
</section>
<section name="Sample code">
<p>
<ul>
<li>Displaying the contents of a table:
<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"));
Column a = new Column();
a.setName("a");
a.setSQLType(Types.INTEGER);
Column b = new Column();
b.setName("b");
b.setSQLType(Types.VARCHAR);
db.createTable("NewTable", Arrays.asList(a, b));
Table newTable = db.getTable("NewTable");
newTable.addRow(new Object[] {1, "foo"});</pre>
</li>
<li>Copying the contents of a JDBC ResultSet (e.g. from an
external database) into a new table:
<pre>Database.open(new File("my.mdb")).copyTable("Imported", resultSet);</pre>
</li>
<li>Copying the contents of a CSV file into a new table:
<pre>Database.open(new File("my.mdb")).importFile("Imported2", new File("my.csv"), ",");</pre>
</li>
</ul>
</p>
</section>
</body>
</document>
|