aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/iciql/Query.java
Commit message (Collapse)AuthorAgeFilesLines
* Conform to Apache standard directory layoutJames Moger2013-03-081-947/+0
|
* Support for read-only views (issue 8)James Moger2012-09-251-2/+25
|
* Draft support for "where xxx in(select bbb from...)"James Moger2012-05-071-0/+9
|
* Refactoring.Taichi Uragami2012-04-071-8/+7
|
* Added support for left outer join.Taichi Uragami2012-04-061-0/+9
|
* Added toParameter() to update/set commandsv0.7.9James Moger2012-01-241-24/+38
| | | Also allow generation of parameterized update statements for reuse.
* Generate SELECT T0.* type statementsv0.7.8James Moger2012-01-111-5/+67
| | | | | | | | * Fixed negative rollover bug in the AS counter. * Replaced the non-threadsafe AS counter with an AtomicInteger. * Added an optional alias parameter to Query.toSQL() and QueryWhere.toSQL() to force SELECT T0.* select lists * Fixed bug with Query.select(Z z) which assumed that z is always an anonymous inner class.
* Disallow multiple instances of an enum within a model classJames Moger2012-01-041-0/+5
|
* Added methods to generate static, reusable, parameterized sql statementsJames Moger2012-01-041-1/+35
|
* Corrected performance regression. Tweaked dynamic query results.v0.7.5James Moger2011-12-131-2/+2
|
* Columns mapped by name in result set instead of index. Disallow multipleJames Moger2011-12-091-2/+16
| | | primitive bools in a model WITH explicit referencing.
* Improved fluent/type-safety of join statementsJames Moger2011-12-061-1/+1
|
* Fixed bug in primitive group by clausesJames Moger2011-12-061-7/+7
|
* Renamed logger. Improved test suite. Added Apache Commons and DBCP.v0.7.0James Moger2011-08-171-4/+4
|
* Added Derby dialect. Finished HSQL dialect. Documentation.James Moger2011-08-151-11/+6
| | | | | | | | | | * Improved DEFAULT value specifications. * Fixed bug in buildObjects where the ResultSet could be closed by the automatic create table attempt. * DbInspector now uses the dialect's reported DATETIME class preference. * Improved IciqlException SQLState code checks. * Integrated LIMIT and OFFSET expression appending in dialects. * Updated to H2 1.3.159 * Allow reopening of a memory database in the test suite.
* Full primitives support.James Moger2011-08-121-7/+286
|
* Added support for HSQL database. Revised dialects some more.James Moger2011-08-111-21/+15
| | | | | | | | | 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.
* Fixed first enum constant special case. (issue 4)James Moger2011-08-081-0/+9
|
* Refinement to BETWEEN to feel more like the rest of the API.James Moger2011-08-081-6/+15
|
* Quick implementation of BETWEEN, IS NULL, and IS NOT NULL.James Moger2011-08-071-1/+25
|
* Finished enum query support (issue 4)James Moger2011-08-071-9/+20
|
* Documentation. Don't double-wrap IciqlException.James Moger2011-08-051-0/+2
|
* Simplified annotations. Interchangeable int-boolean runtime mapping.James Moger2011-08-051-0/+1
|
* BLOB support (issue 1) and Enum support (issue 2). Documentation.James Moger2011-08-041-0/+3
|
* Initial commit of iciql.James Moger2011-08-031-0/+451