summaryrefslogtreecommitdiffstats
path: root/src/com/iciql/util
Commit message (Collapse)AuthorAgeFilesLines
* Generate SELECT T0.* type statementsv0.7.8James Moger2012-01-111-0/+13
| | | | | | | | * 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.
* Fixes to model generation. Fixes to default SQL dialect.James Moger2011-08-311-1/+6
|
* Renamed logger. Improved test suite. Added Apache Commons and DBCP.v0.7.0James Moger2011-08-172-23/+34
|
* Added support for PostgreSQL. Passes all but the boolean-as-int tests.James Moger2011-08-171-1/+1
|
* Finished MySQL dialect; v5.0.51b 100% tested. Added Db.dropTable(T)James Moger2011-08-161-5/+20
|
* Improving performance documentation.James Moger2011-08-151-6/+10
|
* Added Derby dialect. Finished HSQL dialect. Documentation.James Moger2011-08-156-10/+91
| | | | | | | | | | * 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.
* Documentation. Source cleanup. Prepare 0.6.4 release.v0.6.4James Moger2011-08-121-0/+1
|
* Full primitives support.James Moger2011-08-121-0/+4
|
* Added support for HSQL database. Revised dialects some more.James Moger2011-08-111-6/+16
| | | | | | | | | 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.
* IQTable.primaryKey is now an array. Default values from objects.James Moger2011-08-091-1/+1
| | | | Also fixed an error with allowing null objects. Noted rapid churn of iciql in documentation. Changed build constants for next release.
* Documentation. EnumType default is NAME. James Moger2011-08-081-6/+2
|
* Fully support H2 UUID type. Cleanup imports for generated models.James Moger2011-08-081-0/+3
|
* Partial primitives support: insert, update, and select but NOT where.James Moger2011-08-081-15/+18
|
* Finished enum query support (issue 4)James Moger2011-08-071-0/+19
|
* Simplified annotations. Interchangeable int-boolean runtime mapping.James Moger2011-08-051-0/+16
|
* Customizable enumId() mapping (issue 2)James Moger2011-08-041-16/+29
|
* BLOB support (issue 1) and Enum support (issue 2). Documentation.James Moger2011-08-041-0/+111
|
* Overhauling annotations.James Moger2011-08-041-0/+8
| | | | | | | | * @IQSchema(name="public") -> @IQSchema("public") * @IQDatabase(version=2) -> @IQVersion(2) * @IQTable(version=2) -> @IQVersion(2) * @IQIndex annotation simplified to be used for one index definition and expanded to specify index name * added @IQIndexes annotation to specify multiple IQIndex annotations
* Initial commit of iciql.James Moger2011-08-039-0/+1721