]> source.dussan.org Git - jackcess.git/commitdiff
minor updates
authorJames Ahlborn <jtahlborn@yahoo.com>
Wed, 9 Mar 2011 04:54:49 +0000 (04:54 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Wed, 9 Mar 2011 04:54:49 +0000 (04:54 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@522 f203690c-595d-4dc9-a70b-905162fa7fd2

src/java/com/healthmarketscience/jackcess/DataType.java
src/java/com/healthmarketscience/jackcess/query/QueryFormat.java

index 617bab7da758c750926ee2fecddcf27d8da2493a..56330d97f915443917a133f9474140f3191d5b57 100644 (file)
@@ -391,6 +391,10 @@ public enum DataType {
     return toValidRange(precision, getMinPrecision(), getMaxPrecision());
   }
 
+  public boolean isTextual() {
+    return ((this == TEXT) || (this == MEMO));
+  }
+
   private static int toValidRange(int value, int minValue, int maxValue) {
     return((value > maxValue) ? maxValue :
            ((value < minValue) ? minValue : value));
index 4b1fd92ab21c5256aa70e43d9a81e7e5be86ffc9..89d586ef6e430a717281d65731ecbe022101cd3b 100644 (file)
@@ -53,6 +53,10 @@ public class QueryFormat
   public static final int DATA_DEF_QUERY_OBJECT_FLAG = 96;
   public static final int PASSTHROUGH_QUERY_OBJECT_FLAG = 112;
   public static final int UNION_QUERY_OBJECT_FLAG = 128;
+  // dbQSPTBulk = 144
+  // dbQCompound = 160
+  // dbQProcedure = 224
+  // dbQAction = 240
 
   public static final String COL_ATTRIBUTE = "Attribute";
   public static final String COL_EXPRESSION = "Expression";