diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2011-03-14 02:25:21 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2011-03-14 02:25:21 +0000 |
commit | 32a3d34bd2b74381877f905d3514708a97b91c3f (patch) | |
tree | c19bfb31ddea68514c4aa263d2c697d8357e20a9 /src/java/com/healthmarketscience/jackcess/Column.java | |
parent | 48e87a45641089eba1716e856505f74bd359f0e7 (diff) | |
download | jackcess-32a3d34bd2b74381877f905d3514708a97b91c3f.tar.gz jackcess-32a3d34bd2b74381877f905d3514708a97b91c3f.zip |
add nominal support for access 2010, essentially read-only until the new text index sorting is worked out
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@525 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/java/com/healthmarketscience/jackcess/Column.java')
-rw-r--r-- | src/java/com/healthmarketscience/jackcess/Column.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/java/com/healthmarketscience/jackcess/Column.java b/src/java/com/healthmarketscience/jackcess/Column.java index d22b61c..f578f76 100644 --- a/src/java/com/healthmarketscience/jackcess/Column.java +++ b/src/java/com/healthmarketscience/jackcess/Column.java @@ -93,15 +93,18 @@ public class Column implements Comparable<Column> { 25569L * (long)MILLISECONDS_PER_DAY; /** - * Long value (LVAL) type that indicates that the value is stored on the same page + * Long value (LVAL) type that indicates that the value is stored on the + * same page */ private static final byte LONG_VALUE_TYPE_THIS_PAGE = (byte) 0x80; /** - * Long value (LVAL) type that indicates that the value is stored on another page + * Long value (LVAL) type that indicates that the value is stored on another + * page */ private static final byte LONG_VALUE_TYPE_OTHER_PAGE = (byte) 0x40; /** - * Long value (LVAL) type that indicates that the value is stored on multiple other pages + * Long value (LVAL) type that indicates that the value is stored on + * multiple other pages */ private static final byte LONG_VALUE_TYPE_OTHER_PAGES = (byte) 0x00; |