summaryrefslogtreecommitdiffstats
path: root/docs/05_releases.mkd
Commit message (Collapse)AuthorAgeFilesLines
* Generate SELECT T0.* type statementsv0.7.8James Moger2012-01-111-0/+9
| | | | | | | | * 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/+12
|
* Attempt defaultValue instantiation if object is null && spec'd NOT NULLv0.7.6James Moger2011-12-211-0/+4
| | | This is only attempted on db.insert and db.update.
* Corrected performance regression. Tweaked dynamic query results.v0.7.5James Moger2011-12-131-17/+6
|
* Columns mapped by name in result set instead of index. Disallow multipleJames Moger2011-12-091-3/+23
| | | primitive bools in a model WITH explicit referencing.
* Added alternative method signatures to avoid subtle varargs bugsJames Moger2011-12-081-2/+8
|
* Fixed join into custom type of primitivesv0.7.3James Moger2011-12-061-2/+4
|
* Improved fluent/type-safety of join statementsJames Moger2011-12-061-0/+1
|
* Fixed bug in primitive group by clausesJames Moger2011-12-061-0/+1
|
* Fixed joins on primitivesJames Moger2011-12-051-2/+6
|
* Updated H2 1.3.162 and HSQL 2.2.6v0.7.2James Moger2011-11-301-0/+2
|
* Generated models are now serializable.James Moger2011-09-021-2/+6
|
* Fixes to model generation. Fixes to default SQL dialect.James Moger2011-08-311-0/+2
|
* Undeprecated interface configuration. Added more Define methods.James Moger2011-08-301-2/+12
| | | | | | | I've revised my thinking about interface configuration. I think its a good option and should be supported. Field scope is now ignored across the board. If the developer does not want to map a field and is using the interface configuration approach, then the field should be annotated with IQIgnore.
* Renamed logger. Improved test suite. Added Apache Commons and DBCP.v0.7.0James Moger2011-08-171-0/+7
|
* Finished MySQL dialect; v5.0.51b 100% tested. Added Db.dropTable(T)James Moger2011-08-161-3/+8
|
* Added Derby dialect. Finished HSQL dialect. Documentation.James Moger2011-08-151-2/+9
| | | | | | | | | | * 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.
* Fixed bug in delete() and update() where primary key is a primitive.v0.6.5James Moger2011-08-121-2/+6
|
* Documentation. Source cleanup. Prepare 0.6.4 release.v0.6.4James Moger2011-08-121-6/+11
|
* Renamed @IQTable.createIfRequired to @IQTable.createJames Moger2011-08-121-0/+1
|
* Primitive default: NOT NULL. Autoincrement primitive = 0 skip on insert.James Moger2011-08-121-0/+1
|
* Full primitives support.James Moger2011-08-121-1/+2
|
* Documentation. Added another unmapped field case.James Moger2011-08-111-2/+2
|
* Added support for HSQL database. Revised dialects some more.James Moger2011-08-111-2/+10
| | | | | | | | | 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.
* Moved dialects back to main package. Registered MySQL dialect.James Moger2011-08-101-0/+3
|
* All columns are assumed NULLABLE. IQColumn.allowNull->IQColumn.nullableJames Moger2011-08-091-0/+2
|
* IQTable.primaryKey is now an array. Default values from objects.James Moger2011-08-091-2/+18
| | | | Also fixed an error with allowing null objects. Noted rapid churn of iciql in documentation. Changed build constants for next release.
* Documentation. Moved dialects into separate package.James Moger2011-08-081-0/+1
|
* Documentation. EnumType default is NAME. James Moger2011-08-081-4/+13
|
* Documentation.James Moger2011-08-051-0/+1
|
* Simplified annotations. Interchangeable int-boolean runtime mapping.James Moger2011-08-051-1/+5
|
* BLOB support (issue 1) and Enum support (issue 2). Documentation.James Moger2011-08-041-0/+2
|
* Overhauling annotations.James Moger2011-08-041-5/+16
| | | | | | | | * @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
* Documentation.v0.5.0James Moger2011-08-031-0/+1
|
* Initial commit of iciql.James Moger2011-08-031-0/+38