summaryrefslogtreecommitdiffstats
path: root/src/com/iciql
Commit message (Collapse)AuthorAgeFilesLines
* Prepare 1.1.0 releasev1.1.0James Moger2012-08-201-2/+2
|
* Updated unit-tested databasesJames Moger2012-08-201-7/+7
|
* Use savepoints for all bulk ops (insert all, update all, delete all)James Moger2012-08-203-10/+141
|
* Reset build identifiers for next releaseJames Moger2012-07-141-2/+2
|
* Prepare 1.0.0 releasev1.0.0James Moger2012-07-141-3/+3
|
* Use the upgrade check to skip unnecessary table create statementsJames Moger2012-07-142-0/+9
|
* Fix to Issue 5.kc5nra2012-06-181-1/+1
| | | | http://code.google.com/p/iciql/issues/detail?id=5
* Draft support for "where xxx in(select bbb from...)"James Moger2012-05-076-3/+122
|
* Refactoring.Taichi Uragami2012-04-071-8/+7
|
* Added support for left outer join.Taichi Uragami2012-04-061-0/+9
|
* Fixed index out of bounds exception in parsing a default string valuev0.7.10James Moger2012-01-272-3/+3
|
* Added toParameter() to update/set commandsv0.7.9James Moger2012-01-244-32/+68
| | | Also allow generation of parameterized update statements for reuse.
* Generate SELECT T0.* type statementsv0.7.8James Moger2012-01-116-26/+130
| | | | | | | | * 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.
* Prepare 0.7.7 releasev0.7.7James Moger2012-01-051-3/+3
|
* Disallow multiple instances of an enum within a model classJames Moger2012-01-043-1/+37
|
* Added methods to generate static, reusable, parameterized sql statementsJames Moger2012-01-047-6/+227
|
* Attempt defaultValue instantiation if object is null && spec'd NOT NULLv0.7.6James Moger2011-12-213-4/+132
| | | This is only attempted on db.insert and db.update.
* Corrected performance regression. Tweaked dynamic query results.v0.7.5James Moger2011-12-135-58/+49
|
* Prepare next releaseJames Moger2011-12-091-3/+3
|
* Columns mapped by name in result set instead of index. Disallow multipleJames Moger2011-12-096-8/+114
| | | primitive bools in a model WITH explicit referencing.
* Added alternative method signatures to avoid subtle varargs bugsJames Moger2011-12-082-2/+36
|
* Fixed join into custom type of primitivesv0.7.3James Moger2011-12-062-5/+11
|
* Improved fluent/type-safety of join statementsJames Moger2011-12-063-30/+30
|
* Fixed bug in primitive group by clausesJames Moger2011-12-061-7/+7
|
* Fixed joins on primitivesJames Moger2011-12-053-2/+79
|
* Updated H2 1.3.162 and HSQL 2.2.6v0.7.2James Moger2011-11-302-7/+7
|
* Generated models are now serializable.James Moger2011-09-022-3/+7
|
* Prepare 0.7.1 releasev0.7.1James Moger2011-08-311-2/+2
|
* Fixes to model generation. Fixes to default SQL dialect.James Moger2011-08-316-10/+34
|
* Undeprecated interface configuration. Added more Define methods.James Moger2011-08-304-47/+120
| | | | | | | 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.
* Adjustment to PostgreSQL dialect for creating autoincrement columns.James Moger2011-08-301-5/+3
|
* Launch H2 and HSQL servers in test suite and include tcp benchmarks.James Moger2011-08-178-84/+46
|
* Renamed logger. Improved test suite. Added Apache Commons and DBCP.v0.7.0James Moger2011-08-179-42/+71
|
* Added support for PostgreSQL. Passes all but the boolean-as-int tests.James Moger2011-08-1714-190/+269
|
* Refactoring.James Moger2011-08-163-44/+36
|
* Finished MySQL dialect; v5.0.51b 100% tested. Added Db.dropTable(T)James Moger2011-08-1610-35/+147
|
* Prepare 0.6.6 release.v0.6.6James Moger2011-08-151-3/+3
|
* Improving performance documentation.James Moger2011-08-151-6/+10
|
* Added Derby dialect. Finished HSQL dialect. Documentation.James Moger2011-08-1528-124/+529
| | | | | | | | | | * 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-123-14/+20
|
* Documentation. Source cleanup. Prepare 0.6.4 release.v0.6.4James Moger2011-08-123-4/+7
|
* Always enforce strict type mapping.James Moger2011-08-123-16/+2
|
* Renamed @IQTable.createIfRequired to @IQTable.createJames Moger2011-08-122-2/+2
|
* Primitive default: NOT NULL. Autoincrement primitive = 0 skip on insert.James Moger2011-08-121-8/+24
|
* Full primitives support.James Moger2011-08-124-22/+551
|
* Documentation. Added another unmapped field case.James Moger2011-08-112-5/+5
|
* Added support for HSQL database. Revised dialects some more.James Moger2011-08-1119-217/+449
| | | | | | | | | 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-106-48/+63
|
* Dialect refinements.James Moger2011-08-108-97/+207
|
* All columns are assumed NULLABLE. IQColumn.allowNull->IQColumn.nullableJames Moger2011-08-095-24/+24
|