summaryrefslogtreecommitdiffstats
path: root/src/com/iciql/Db.java
Commit message (Collapse)AuthorAgeFilesLines
* Corrected performance regression. Tweaked dynamic query results.v0.7.5James Moger2011-12-131-22/+27
|
* Columns mapped by name in result set instead of index. Disallow multipleJames Moger2011-12-091-1/+16
| | | primitive bools in a model WITH explicit referencing.
* Added alternative method signatures to avoid subtle varargs bugsJames Moger2011-12-081-0/+34
|
* Fixes to model generation. Fixes to default SQL dialect.James Moger2011-08-311-0/+9
|
* Renamed logger. Improved test suite. Added Apache Commons and DBCP.v0.7.0James Moger2011-08-171-2/+2
|
* Added support for PostgreSQL. Passes all but the boolean-as-int tests.James Moger2011-08-171-4/+4
|
* Refactoring.James Moger2011-08-161-6/+6
|
* Finished MySQL dialect; v5.0.51b 100% tested. Added Db.dropTable(T)James Moger2011-08-161-7/+35
|
* Added Derby dialect. Finished HSQL dialect. Documentation.James Moger2011-08-151-2/+20
| | | | | | | | | | * 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-4/+4
|
* Added support for HSQL database. Revised dialects some more.James Moger2011-08-111-15/+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-4/+3
|
* Dialect refinements.James Moger2011-08-101-28/+42
|
* All columns are assumed NULLABLE. IQColumn.allowNull->IQColumn.nullableJames Moger2011-08-091-4/+4
|
* 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. Moved dialects into separate package.James Moger2011-08-081-3/+3
|
* Simplified dialect lookup.James Moger2011-08-081-10/+10
|
* Overhauling annotations.James Moger2011-08-041-9/+9
| | | | | | | | * @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-031-0/+470