diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2008-03-03 15:10:39 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2008-03-03 15:10:39 +0000 |
commit | 3250f60d19401a4434192d10062bba2f6ae106d6 (patch) | |
tree | 62b233c4fd9353ea1b16022bf7f40dfb62577099 /src/site/fml/faq.fml | |
parent | 47e78e51bb6dc5dfe757831bfeab8b1736979c76 (diff) | |
download | jackcess-3250f60d19401a4434192d10062bba2f6ae106d6.tar.gz jackcess-3250f60d19401a4434192d10062bba2f6ae106d6.zip |
add faq entry on internationl chars in indexes
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@245 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/site/fml/faq.fml')
-rw-r--r-- | src/site/fml/faq.fml | 39 |
1 files changed, 34 insertions, 5 deletions
diff --git a/src/site/fml/faq.fml b/src/site/fml/faq.fml index 4f6b9b8..4ae5384 100644 --- a/src/site/fml/faq.fml +++ b/src/site/fml/faq.fml @@ -113,15 +113,15 @@ <question>What version of the JDK does this require?</question> <answer> <p> - Version 1.0 requires JDK 1.4 or higher. The version in CVS HEAD and future releases - will require JDK 1.5 or higher. + Version 1.0 requires JDK 1.4 or higher. The version in SVN trunk + and all future releases will require JDK 1.5 or higher. </p> <p> However, some users have contributed patches to make later versions compatible with JDK 1.4. Please check the contributions/ directory - for any such patches. Note that any code in this directory is - untested and unsupported, so please use at your own risk and do not - file bugs based on that code. + in the source repository for any such patches. Note that any code + in this directory is untested and unsupported, so please use at your + own risk and do not file bugs based on that code. </p> </answer> </faq> @@ -156,6 +156,35 @@ </answer> </faq> + <faq id="international"> + <question>Why am I getting an IOException with the message "unmapped + string index value"?</question> + <answer> + <p> + Jackcess cannot currently update a text column index with values + which contain non-ascii characters. This situation often arises + when tables are created with names which contain international + characters. Access stores the table names in another table which + has an index on the table name column. The index encoding is not + simple to reverse engineer, so it is not likely that Jackcess will + support this anytime soon. + </p> + <p> + Some suggestions: + </p> + <ul> + <li>Use only ascii characters in table names if at all + possible</li> + <li>If tables with international characters are required, create + the tables using Access, then update the tables using + jackcess.</li> + <li>For indexes on user created tables, populate the table + without indexes in jackcess, then add the index using + Access.</li> + </ul> + </answer> + </faq> + <faq id="hms"> <question>Who is Health Market Science?</question> <answer> |