aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* updated Maven submodule repository to 1.5.0James Moger2014-11-101-0/+0
|
* Reset build identifiers for next development cycleJames Moger2014-11-103-4/+22
|
* Prepare 1.5.0 releasev1.5.0James Moger2014-11-103-12/+12
|
* Fix SQLite INTEGER PRIMARY KEY AUTOINCREMENT mappingJames Moger2014-11-103-2/+30
|
* Fixed test failures due to 1-indexed primary key assignment assumptionJames Moger2014-11-102-24/+44
|
* Implement DAO externalized statement loading based on runtime ModeJames Moger2014-11-1010-15/+285
|
* Add support for runtime Mode in the DataTypeAdaptersJames Moger2014-11-1012-21/+171
|
* Revise built-in type adapter class names again, add Yaml type adapterJames Moger2014-11-1014-92/+183
|
* Moved data type adapters into separate package, added gson and xstreamJames Moger2014-11-0914-109/+441
|
* Implement Dao proxy generation with annotated sql statement executionJames Moger2014-11-0917-319/+1868
| | | | This functionality is inspired by JDBI but is not based on it's implementation.
* Revise type adapter definition to be a separate annotationJames Moger2014-11-097-47/+199
|
* Change return types for several Db methods to indicate statusJames Moger2014-11-072-779/+803
|
* Improve Date type conversionsJames Moger2014-11-061-0/+14
|
* Update maven repository submoduleJames Moger2014-11-061-0/+0
|
* updated Maven submodule repository to 1.4.0James Moger2014-11-051-0/+0
|
* Reset build identifiers for next development cycleJames Moger2014-11-053-4/+22
|
* Prepare 1.4.0 releasev1.4.0James Moger2014-11-053-12/+12
|
* Bump to 1.4.0-SNAPSHOT and update documentationJames Moger2014-11-054-4/+9
|
* Add support for SQLite 3.8.7James Moger2014-11-0310-12/+182
|
* Improve test db definitionsJames Moger2014-11-031-4/+4
|
* Move constraint definitions into CREATE TABLE instead of ALTER TABLEJames Moger2014-11-034-1722/+1747
|
* Foreign key test must reference a unique rowJames Moger2014-11-031-2/+5
|
* Relax BigDecimal equivalency checksJames Moger2014-11-032-2/+7
|
* Allow dialects to determine if they support savepointsJames Moger2014-11-033-98/+13
|
* Do not attempt to set a null object into a primitive typeJames Moger2014-11-011-0/+6
|
* Improve SQL numeric to Java object type conversionsJames Moger2014-11-011-0/+10
|
* Allow manual registration of type adaptersJames Moger2014-10-303-4/+16
|
* Implement auto-closable interface on DbJames Moger2014-10-302-1/+60
|
* Support data type adaptersJames Moger2014-10-2919-87/+557
| | | | | This allows custom types to be (de)serialized into a standard JDBC type or to support db-specific data types, like the Postgres json and xml types.
* Tweak release processJames Moger2014-10-223-32/+10
|
* updated Maven submodule repository to 1.3.0James Moger2014-10-221-0/+0
|
* Reset build identifiers for next development cycleJames Moger2014-10-223-4/+22
|
* Prepare 1.3.0 releasev1.3.0James Moger2014-10-222-10/+10
|
* Set Constants.VERSION to 1.3.0 and release date to 2014-10-22James Moger2014-10-221-2/+2
|
* Add description to tagRelease ant task, update build script propertiesJames Moger2014-10-222-4/+4
|
* DocumentationJames Moger2014-10-223-22/+16
|
* Revise nested conditions implementation and apiJames Moger2014-10-225-146/+211
|
* Implement execution tests of nested conditions and documentationJames Moger2014-10-227-15/+112
|
* Fix time jitter in unit tests causing intermittent false failuresJames Moger2014-10-221-21/+35
|
* Support generic types for EnumId mappingJames Moger2014-10-227-112/+258
|
* DocumentationJames Moger2014-10-222-2/+11
|
* Fix unit tests for column name escapingJames Moger2014-10-224-58/+114
|
* Update dependenciesJames Moger2014-10-227-31/+35
|
* Support mapping SQL BOOLEAN -> primitive numeric typesJames Moger2014-10-064-4/+87
|
* Be more careful with primitive type rollover in alias instantiationJames Moger2014-10-062-8/+10
|
* Update documentationJames Moger2014-10-061-3/+9
|
* Merge branch 'pr-8'James Moger2014-10-067-7/+458
|\
| * add support stackable condition: ex. X and (Y or Z)Sotaro SUZUKI2014-10-067-7/+458
|/ | | | | see samples in src/test/java/com/iciql/test/StackableConditionsTest.java
* Merge branch 'pr-7'James Moger2014-10-067-23/+190
|\
| * add support condition oneOf / noneOfSotaro SUZUKI2014-10-067-23/+190
|/ | | | var-length parameterized IN(?, ?, ...), NOT IN(?, ?, ...) support