aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/iciql
Commit message (Collapse)AuthorAgeFilesLines
* Fix missing table name to warningJames Moger2016-04-041-1/+1
|
* Fix #22: Failure to set fields to nullJames Moger2016-04-042-13/+12
|
* Fixes #20: Add groupBy methods to QueryWhereJames Moger2016-04-041-0/+95
|
* Strip column identifiers from specified column names when mapping JDBC ↵James Moger2015-07-216-5/+24
| | | | ResultSets to fields
* Allow construction of Set, List, and Map fields for DataTypeAdaptersJames Moger2015-06-301-0/+11
|
* Fix wildcard SELECT column mapping on JOIN statementsJames Moger2015-06-291-2/+1
|
* Add support for upcoming Postgres 9.5 UPSERT syntaxJames Moger2015-05-132-7/+39
|
* Do not register DataTypeAdapters by the target Java typeJames Moger2015-05-119-1083/+1075
|
* Use manifest method to get versionJames Moger2015-05-111-10/+8
|
* Improve SQLite dialect and unit-test conformanceJames Moger2015-04-301-10/+7
|
* Gracefully handle SQLite's pre-closed ResultSets for queries with 0 returned ↵James Moger2015-04-222-18/+30
| | | | rows
* Fix deserialization of null valuesJames Moger2015-04-221-24/+17
|
* Use JavaType as the key for DataTypeAdapter registrationJames Moger2015-04-169-44/+52
|
* Allow SQLite the chance to deserialize DateTime objectsJames Moger2015-04-161-0/+45
|
* Move standard object deserialization into the dialectJames Moger2015-04-166-116/+125
|
* Drop precision and length from SQL->Java type determinationJames Moger2015-04-101-0/+4
|
* Use version metadata stamped by the build processJames Moger2015-04-101-7/+33
|
* Make IQTable.inheritColumns works for an arbitrary depth.Maaartin Grajcar2015-04-072-26/+26
|
* Use ClassLoader of dao interface for proxyConstantin Nickel2015-04-041-1/+1
|
* Reset build identifiers for next development cycleJames Moger2014-11-101-2/+2
|
* Prepare 1.5.0 releasev1.5.0James Moger2014-11-101-2/+2
|
* Fix SQLite INTEGER PRIMARY KEY AUTOINCREMENT mappingJames Moger2014-11-102-1/+28
|
* Implement DAO externalized statement loading based on runtime ModeJames Moger2014-11-104-8/+169
|
* Add support for runtime Mode in the DataTypeAdaptersJames Moger2014-11-1010-21/+159
|
* Revise built-in type adapter class names again, add Yaml type adapterJames Moger2014-11-109-63/+123
|
* Moved data type adapters into separate package, added gson and xstreamJames Moger2014-11-0910-104/+419
|
* Implement Dao proxy generation with annotated sql statement executionJames Moger2014-11-093-4/+968
| | | | 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-094-42/+78
|
* Change return types for several Db methods to indicate statusJames Moger2014-11-071-775/+799
|
* Improve Date type conversionsJames Moger2014-11-061-0/+14
|
* Reset build identifiers for next development cycleJames Moger2014-11-051-2/+2
|
* Prepare 1.4.0 releasev1.4.0James Moger2014-11-051-2/+2
|
* Bump to 1.4.0-SNAPSHOT and update documentationJames Moger2014-11-051-1/+1
|
* Add support for SQLite 3.8.7James Moger2014-11-033-1/+135
|
* Move constraint definitions into CREATE TABLE instead of ALTER TABLEJames Moger2014-11-034-1722/+1747
|
* 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-301-1/+2
|
* Support data type adaptersJames Moger2014-10-2913-83/+442
| | | | | 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.
* Reset build identifiers for next development cycleJames Moger2014-10-221-2/+2
|
* Set Constants.VERSION to 1.3.0 and release date to 2014-10-22James Moger2014-10-221-2/+2
|
* Revise nested conditions implementation and apiJames Moger2014-10-223-92/+97
|
* Support generic types for EnumId mappingJames Moger2014-10-224-92/+144
|
* Update dependenciesJames Moger2014-10-223-10/+14
|
* Support mapping SQL BOOLEAN -> primitive numeric typesJames Moger2014-10-061-3/+15
|
* Be more careful with primitive type rollover in alias instantiationJames Moger2014-10-061-8/+8
|
* add support stackable condition: ex. X and (Y or Z)Sotaro SUZUKI2014-10-065-6/+279
| | | | | see samples in src/test/java/com/iciql/test/StackableConditionsTest.java
* add support condition oneOf / noneOfSotaro SUZUKI2014-10-065-8/+68
| | | | var-length parameterized IN(?, ?, ...), NOT IN(?, ?, ...) support