Browse Source

add readme

git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@956 f203690c-595d-4dc9-a70b-905162fa7fd2
tags/jackcess-2.1.3
James Ahlborn 8 years ago
parent
commit
04dcb1fffa
4 changed files with 28 additions and 2 deletions
  1. 15
    0
      README.txt
  2. 1
    1
      pom.xml
  3. 1
    1
      src/main/java/com/healthmarketscience/jackcess/DatabaseBuilder.java
  4. 11
    0
      src/site/site.xml

+ 15
- 0
README.txt View File

Jackcess

Jackcess is a pure Java library for reading from and writing to MS Access
databases (currently supporting versions 2000-2013). 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 Apache License
(as of version 2.1.0).


Please note that the GitHub repository is a mirror of the main project
repository which is hosted on SourceForge:

Homepage: http://jackcess.sourceforge.net/

Project: https://sourceforge.net/projects/jackcess/

+ 1
- 1
pom.xml View File

<parent> <parent>
<groupId>com.healthmarketscience</groupId> <groupId>com.healthmarketscience</groupId>
<artifactId>openhms-parent</artifactId> <artifactId>openhms-parent</artifactId>
<version>1.1.1</version>
<version>1.1.2-SNAPSHOT</version>
</parent> </parent>
<groupId>com.healthmarketscience.jackcess</groupId> <groupId>com.healthmarketscience.jackcess</groupId>
<artifactId>jackcess</artifactId> <artifactId>jackcess</artifactId>

+ 1
- 1
src/main/java/com/healthmarketscience/jackcess/DatabaseBuilder.java View File

* </pre> * </pre>
* <p/> * <p/>
* Advanced example usage: * Advanced example usage:
* <pre>
* <pre class="prettyprint linenums">
* Database db = new DatabaseBuilder(new File("test.mdb")) * Database db = new DatabaseBuilder(new File("test.mdb"))
* .setReadOnly(true) * .setReadOnly(true)
* .open(); * .open();

+ 11
- 0
src/site/site.xml View File

<?xml version="1.0"?> <?xml version="1.0"?>


<project name="Jackcess"> <project name="Jackcess">
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
<version>1.4</version>
</skin>
<body> <body>
<menu name="Jackcess"> <menu name="Jackcess">
<item name="About" href="index.html"/> <item name="About" href="index.html"/>
<menu ref="reports"/> <menu ref="reports"/>


</body> </body>

<custom>
<fluidoSkin>
<sourceLineNumbersEnabled>true</sourceLineNumbersEnabled>
</fluidoSkin>
</custom>
</project> </project>

Loading…
Cancel
Save