aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/iciql/TableInspector.java
Commit message (Collapse)AuthorAgeFilesLines
* Conform to Apache standard directory layoutJames Moger2013-03-081-723/+0
|
* Fix encodings on some source files and confirm by compiling as UTF-8James Moger2013-01-221-1/+1
|
* add foreign key constraint annotationbartolomiew2012-10-121-0/+7
| | | | add unique constraint annotation fix small bug in build.xml for java source destination
* Generated models are now serializable.James Moger2011-09-021-1/+5
|
* Fixes to model generation. Fixes to default SQL dialect.James Moger2011-08-311-1/+1
|
* Added support for PostgreSQL. Passes all but the boolean-as-int tests.James Moger2011-08-171-9/+5
|
* Finished MySQL dialect; v5.0.51b 100% tested. Added Db.dropTable(T)James Moger2011-08-161-3/+3
|
* Added Derby dialect. Finished HSQL dialect. Documentation.James Moger2011-08-151-1/+2
| | | | | | | | | | * 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.
* Added support for HSQL database. Revised dialects some more.James Moger2011-08-111-8/+24
| | | | | | | | | 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.
* Dialect refinements.James Moger2011-08-101-10/+1
|
* All columns are assumed NULLABLE. IQColumn.allowNull->IQColumn.nullableJames Moger2011-08-091-6/+6
|
* IQTable.primaryKey is now an array. Default values from objects.James Moger2011-08-091-21/+27
| | | | Also fixed an error with allowing null objects. Noted rapid churn of iciql in documentation. Changed build constants for next release.
* Fully support H2 UUID type. Cleanup imports for generated models.James Moger2011-08-081-2/+5
|
* IndexValidation was broken for single-indexes or non-standard indexes.v0.6.2James Moger2011-08-051-4/+14
|
* Simplified annotations. Interchangeable int-boolean runtime mapping.James Moger2011-08-051-4/+4
|
* BLOB support (issue 1) and Enum support (issue 2). Documentation.James Moger2011-08-041-1/+5
|
* Overhauling annotations.James Moger2011-08-041-47/+58
| | | | | | | | * @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/+674