aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/iciql/QueryBetween.java
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2011-08-11 14:04:01 -0400
committerJames Moger <james.moger@gmail.com>2011-08-11 14:04:01 -0400
commit0333ed4cf0b5db3f9ffcb0da31787f6e44139af5 (patch)
treea0c0c57e38dd5e8e48e03b2aa4ad8a2c39bff189 /src/com/iciql/QueryBetween.java
parentf3faeb5d1ea631b0074441f97080e1f2a9145f4b (diff)
downloadiciql-0333ed4cf0b5db3f9ffcb0da31787f6e44139af5.tar.gz
iciql-0333ed4cf0b5db3f9ffcb0da31787f6e44139af5.zip
Added support for HSQL database. Revised dialects some more.
Moved CREATE TABLE and CREATE INDEX statement generation to the dialect. Added DECIMAL(length, scale) support. Improved automatic dialect detection. Unspecified length string is now CLOB instead of TEXT. Boolean now maps to BOOLEAN instead of BIT. Expressions on unmapped fields will throw an IciqlException. Improved exception reporting.
Diffstat (limited to 'src/com/iciql/QueryBetween.java')
-rw-r--r--src/com/iciql/QueryBetween.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/iciql/QueryBetween.java b/src/com/iciql/QueryBetween.java
index de09515..8628f40 100644
--- a/src/com/iciql/QueryBetween.java
+++ b/src/com/iciql/QueryBetween.java
@@ -18,6 +18,10 @@ package com.iciql;
/**
* This class represents a "between y and z" condition.
+ * @param <T>
+ * the return type of the query
+ * @param <A>
+ * the incomplete condition data type
*/
public class QueryBetween<T, A> {