]> source.dussan.org Git - iciql.git/log
iciql.git
13 years agoFinished MySQL dialect; v5.0.51b 100% tested. Added Db.dropTable(T)
James Moger [Tue, 16 Aug 2011 19:32:56 +0000 (15:32 -0400)]
Finished MySQL dialect; v5.0.51b 100% tested. Added Db.dropTable(T)

13 years agoPrepare 0.6.6 release. v0.6.6
James Moger [Mon, 15 Aug 2011 22:06:15 +0000 (18:06 -0400)]
Prepare 0.6.6 release.

13 years agoImproving performance documentation.
James Moger [Mon, 15 Aug 2011 21:40:48 +0000 (17:40 -0400)]
Improving performance documentation.

13 years agoAdded Derby dialect. Finished HSQL dialect. Documentation.
James Moger [Mon, 15 Aug 2011 20:44:14 +0000 (16:44 -0400)]
Added Derby dialect. Finished HSQL dialect. Documentation.

* 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.

13 years agoFixed bug in delete() and update() where primary key is a primitive. v0.6.5
James Moger [Fri, 12 Aug 2011 19:41:42 +0000 (15:41 -0400)]
Fixed bug in delete() and update() where primary key is a primitive.

13 years agoDocumentation. Source cleanup. Prepare 0.6.4 release. v0.6.4
James Moger [Fri, 12 Aug 2011 18:55:02 +0000 (14:55 -0400)]
Documentation. Source cleanup. Prepare 0.6.4 release.

13 years agoAlways enforce strict type mapping.
James Moger [Fri, 12 Aug 2011 18:15:57 +0000 (14:15 -0400)]
Always enforce strict type mapping.

13 years agoRenamed @IQTable.createIfRequired to @IQTable.create
James Moger [Fri, 12 Aug 2011 18:07:53 +0000 (14:07 -0400)]
Renamed @IQTable.createIfRequired to @IQTable.create

13 years agoPrimitive default: NOT NULL. Autoincrement primitive = 0 skip on insert.
James Moger [Fri, 12 Aug 2011 18:05:54 +0000 (14:05 -0400)]
Primitive default: NOT NULL. Autoincrement primitive = 0 skip on insert.

13 years agoFull primitives support.
James Moger [Fri, 12 Aug 2011 17:04:29 +0000 (13:04 -0400)]
Full primitives support.

13 years agoDocumentation. Added another unmapped field case.
James Moger [Thu, 11 Aug 2011 18:38:02 +0000 (14:38 -0400)]
Documentation. Added another unmapped field case.

13 years agoRestructured test suite to run against multiple databases.
James Moger [Thu, 11 Aug 2011 18:10:28 +0000 (14:10 -0400)]
Restructured test suite to run against multiple databases.

13 years agoAdded support for HSQL database. Revised dialects some more.
James Moger [Thu, 11 Aug 2011 18:04:01 +0000 (14:04 -0400)]
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.

13 years agoMoved dialects back to main package. Registered MySQL dialect.
James Moger [Wed, 10 Aug 2011 13:18:43 +0000 (09:18 -0400)]
Moved dialects back to main package. Registered MySQL dialect.

13 years agoDialect refinements.
James Moger [Wed, 10 Aug 2011 13:01:04 +0000 (09:01 -0400)]
Dialect refinements.

13 years agoAll columns are assumed NULLABLE. IQColumn.allowNull->IQColumn.nullable
James Moger [Tue, 9 Aug 2011 17:56:44 +0000 (13:56 -0400)]
All columns are assumed NULLABLE. IQColumn.allowNull->IQColumn.nullable

13 years agoIQTable.primaryKey is now an array. Default values from objects.
James Moger [Tue, 9 Aug 2011 15:28:48 +0000 (11:28 -0400)]
IQTable.primaryKey is now an array. Default values from objects.

Also fixed an error with allowing null objects. Noted rapid churn of
iciql in documentation. Changed build constants for next release.

13 years agoFix build date.
James Moger [Mon, 8 Aug 2011 16:48:12 +0000 (12:48 -0400)]
Fix build date.

13 years agoDo not generate primitive mappings. Prepare v0.6.3 release. v0.6.3
James Moger [Mon, 8 Aug 2011 16:43:46 +0000 (12:43 -0400)]
Do not generate primitive mappings. Prepare v0.6.3 release.

13 years agoDocumentation. Moved dialects into separate package.
James Moger [Mon, 8 Aug 2011 16:25:12 +0000 (12:25 -0400)]
Documentation. Moved dialects into separate package.

13 years agoFixed first enum constant special case. (issue 4)
James Moger [Mon, 8 Aug 2011 16:03:10 +0000 (12:03 -0400)]
Fixed first enum constant special case. (issue 4)

13 years agoDocumentation. EnumType default is NAME.
James Moger [Mon, 8 Aug 2011 15:12:50 +0000 (11:12 -0400)]
Documentation. EnumType default is NAME.

13 years agoSimplified dialect lookup.
James Moger [Mon, 8 Aug 2011 13:40:16 +0000 (09:40 -0400)]
Simplified dialect lookup.

13 years agoFully support H2 UUID type. Cleanup imports for generated models.
James Moger [Mon, 8 Aug 2011 13:32:30 +0000 (09:32 -0400)]
Fully support H2 UUID type. Cleanup imports for generated models.

13 years agoPartial primitives support: insert, update, and select but NOT where.
James Moger [Mon, 8 Aug 2011 12:35:24 +0000 (08:35 -0400)]
Partial primitives support: insert, update, and select but NOT where.

13 years agoRefinement to BETWEEN to feel more like the rest of the API.
James Moger [Mon, 8 Aug 2011 11:54:28 +0000 (07:54 -0400)]
Refinement to BETWEEN to feel more like the rest of the API.

13 years agoQuick implementation of BETWEEN, IS NULL, and IS NOT NULL.
James Moger [Sun, 7 Aug 2011 20:10:43 +0000 (16:10 -0400)]
Quick implementation of BETWEEN, IS NULL, and IS NOT NULL.

13 years agoFinished enum query support (issue 4)
James Moger [Sun, 7 Aug 2011 19:53:18 +0000 (15:53 -0400)]
Finished enum query support (issue 4)

13 years agoIndexValidation was broken for single-indexes or non-standard indexes. v0.6.2
James Moger [Fri, 5 Aug 2011 21:15:45 +0000 (17:15 -0400)]
IndexValidation was broken for single-indexes or non-standard indexes.

13 years agoDocumentation.
James Moger [Fri, 5 Aug 2011 20:45:31 +0000 (16:45 -0400)]
Documentation.

13 years agoImportant fix to _iq_versions create mechanism to work with H2 1.3.158+ v0.6.1
James Moger [Fri, 5 Aug 2011 20:40:48 +0000 (16:40 -0400)]
Important fix to _iq_versions create mechanism to work with H2 1.3.158+

13 years agoRelease 0.6.0. APIv2 v0.6.0
James Moger [Fri, 5 Aug 2011 19:18:44 +0000 (15:18 -0400)]
Release 0.6.0. APIv2

13 years agoDocumentation. Don't double-wrap IciqlException.
James Moger [Fri, 5 Aug 2011 19:18:02 +0000 (15:18 -0400)]
Documentation. Don't double-wrap IciqlException.

13 years agoSimplified annotations. Interchangeable int-boolean runtime mapping.
James Moger [Fri, 5 Aug 2011 15:04:29 +0000 (11:04 -0400)]
Simplified annotations. Interchangeable int-boolean runtime mapping.

13 years agoCustomizable enumId() mapping (issue 2)
James Moger [Fri, 5 Aug 2011 02:22:24 +0000 (22:22 -0400)]
Customizable enumId() mapping (issue 2)

13 years agoBLOB support (issue 1) and Enum support (issue 2). Documentation.
James Moger [Thu, 4 Aug 2011 21:58:22 +0000 (17:58 -0400)]
BLOB support (issue 1) and Enum support (issue 2). Documentation.

13 years agoOverhauling annotations.
James Moger [Thu, 4 Aug 2011 18:10:59 +0000 (14:10 -0400)]
Overhauling annotations.

* @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

13 years agoChange identifiers for next release.
James Moger [Thu, 4 Aug 2011 17:51:26 +0000 (13:51 -0400)]
Change identifiers for next release.

13 years agoDocumentation.
James Moger [Thu, 4 Aug 2011 13:10:30 +0000 (09:10 -0400)]
Documentation.

13 years agoDocumentation.
James Moger [Thu, 4 Aug 2011 02:41:48 +0000 (22:41 -0400)]
Documentation.

13 years agoDocumentation. v0.5.0
James Moger [Thu, 4 Aug 2011 02:06:12 +0000 (22:06 -0400)]
Documentation.

13 years agoInitial commit of iciql.
James Moger [Thu, 4 Aug 2011 02:01:42 +0000 (22:01 -0400)]
Initial commit of iciql.