git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@522
f203690c-595d-4dc9-a70b-
905162fa7fd2
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));
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";