diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2023-12-30 17:19:36 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2023-12-30 17:19:36 +0000 |
commit | e8d8c1d9ed8bd993b647e2ef675c181e8fced166 (patch) | |
tree | 05e3d4307c2db4a76aadbe0c9b00914019f14b2a | |
parent | 3cf9d77b34e86d0665ff95c4d0b54e1a6bd17c8b (diff) | |
download | jackcess-e8d8c1d9ed8bd993b647e2ef675c181e8fced166.tar.gz jackcess-e8d8c1d9ed8bd993b647e2ef675c181e8fced166.zip |
add faq entry
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1403 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r-- | src/site/fml/faq.fml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/site/fml/faq.fml b/src/site/fml/faq.fml index f286fcf..88be76d 100644 --- a/src/site/fml/faq.fml +++ b/src/site/fml/faq.fml @@ -264,6 +264,23 @@ </answer> </faq> + <faq id="read-during-write"> + <question>Can Jackcess open an Access database read-only while it is + being edited by another application?</question> + <answer> + <p> + Using Jackcess read-only on the db would not corrupt the db file + itself. That said, you risk that jackcess will throw spurious + exceptions or find invalid or "corrupt" data while attempting to + read the database because the database file may not be internally + consistent at all times. So, at the very least, you will need to + expect reads to occasionally fail. Depending on what "reliability" + you require of the data, you might also need to handle reading data + which is not 100% correct. + </p> + </answer> + </faq> + <faq id="bugs"> <question>It doesn't work!</question> <answer> |