diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2012-04-03 13:41:34 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2012-04-03 13:41:34 +0000 |
commit | 499897124cf42fcc879db23833f6067099ec9a94 (patch) | |
tree | acbd6cc0b75d21b46af19ce8ba6365162477e76e /src | |
parent | af2a153cf3e4fb13a1d4a1fee6b762dd77ea8667 (diff) | |
download | jackcess-499897124cf42fcc879db23833f6067099ec9a94.tar.gz jackcess-499897124cf42fcc879db23833f6067099ec9a94.zip |
doc updates
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@623 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src')
-rw-r--r-- | src/changes/changes.xml | 6 | ||||
-rw-r--r-- | src/site/fml/faq.fml | 22 |
2 files changed, 20 insertions, 8 deletions
diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 6c6b401..7e8f5ac 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -5,9 +5,6 @@ </properties> <body> <release version="1.2.7" date="2012-04-02"> - <action dev="jahlborn" type="update"> - Rename and refactor the Cursor find methods to improve usability. - </action> <action dev="jahlborn" type="update" issue="3479560"> Add initial support for linked tables. Linked tables will now be loaded by the normal Database.getTable method. Linked tables can be @@ -15,6 +12,9 @@ resolution can be customized per Database by supplying a custom LinkResolver. </action> + <action dev="jahlborn" type="update"> + Rename and refactor the Cursor find methods to improve usability. + </action> </release> <release version="1.2.6" date="2011-12-16"> <action dev="jahlborn" type="update" issue="3358272"> diff --git a/src/site/fml/faq.fml b/src/site/fml/faq.fml index 1e391aa..624efe9 100644 --- a/src/site/fml/faq.fml +++ b/src/site/fml/faq.fml @@ -218,16 +218,28 @@ </answer> </faq> + <faq id="jdbc"> + <question>Does Jackcess provide a JDBC driver for Microsoft Access databases?</question> + <answer> + Unfortunately, no. The Jackcess API is a direct implementation of the + features available for interacting with an Access database. There is + currently no implementation of the JDBC API included with the Jackcess + library. While this library would be a great foundation for a JDBC + driver, implementing the JDBC API is currently outside the scope of + this project. There have been a few attempts to use Jackcess to build + JDBC drivers for Access databases, but none of the projects seem to + have progressed very far before becoming inactive. + </answer> + </faq> + <faq id="query"> <question>Can Jackcess execute SQL queries?</question> <answer> As of the 1.1.19 release, Jackcess has the ability to <i>read</i> the Queries saved in an Access database (i.e. interpret the data stored in the system Queries table). However, Jackcess does not have the - ability to <i>execute</i> these Queries. There have been a few - attempts to use Jackcess to build JDBC drivers for Access databases, - but none of the projects seem to have progressed very far before - becoming inactive. + ability to <i>execute</i> these Queries. See <a href="#jdbc">this question</a> + for more details regarding JDBC and Jackcess. </answer> </faq> @@ -259,7 +271,7 @@ </faq> <faq id="encoding"> - <question>Why do I get an UnsupportedOperationException with the message + <question>Why do I get an UnsupportedCodecException with the message "Decoding not supported"?</question> <answer> This exception indicates that the Access database you are attempting |