aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com
Commit message (Expand)AuthorAgeFilesLines
* Fix missing column names in AppendQuery SQL strings. Fixes #131James Ahlborn2016-01-122-6/+28
* Add FileFormat.GENERIC_JET4 in order to support getting the file format for j...James Ahlborn2015-11-253-0/+17
* minor tweak to iteratorJames Ahlborn2015-11-251-1/+5
* Add some utility methods for handling Dates in an Access compatible manner. ...James Ahlborn2015-11-252-3/+32
* throw better exception when attempting to create file which does not support ...James Ahlborn2015-11-251-1/+5
* cleanup findbugs reportJames Ahlborn2015-11-011-7/+7
* Throw a prettier exception when maxing out the row size during row creation. ...James Ahlborn2015-10-311-2/+10
* undo accidental commitJames Ahlborn2015-10-071-1/+1
* add readmeJames Ahlborn2015-10-071-1/+1
* fix borked javadoc tagJames Ahlborn2015-07-071-2/+2
* Fix handling of dateTimes before the access epoch. fixes issue #126James Ahlborn2015-06-181-8/+39
* handle reading null calculated values, fixes #125James Ahlborn2015-06-171-1/+13
* tweak some docsJames Ahlborn2015-05-023-3/+3
* Allow optional direct insert/update of autonumber values. This is disabled b...James Ahlborn2015-05-015-61/+312
* more user friendly exception messageJames Ahlborn2015-04-211-2/+3
* Load linked table info from system table when reading databases with unsuppor...James Ahlborn2015-04-211-9/+9
* relicense with Apache LicenseJames Ahlborn2015-04-17128-2076/+1332
* remove unused loggersJames Ahlborn2015-03-265-21/+0
* need to compare primitive shortJames Ahlborn2015-03-261-1/+1
* cleanup some ColumnBuilder stuff around copying existing columns, remove usel...James Ahlborn2015-03-191-24/+50
* better index setup callJames Ahlborn2015-03-181-1/+1
* Implement support for indexes on BINARY fieldsJames Ahlborn2015-03-163-38/+114
* missed a few more error context usagesJames Ahlborn2015-03-132-4/+7
* lower log level for certain system table warnings; add contextual info to man...James Ahlborn2015-03-0815-256/+425
* add some convenience methods for new TableIterableBuilder; add change notes f...James Ahlborn2015-03-042-2/+21
* fix linked table test; add unit tests for new table iteration methodsJames Ahlborn2015-02-231-8/+35
* add more flexible table iteration, feature #28James Ahlborn2015-02-143-20/+136
* add method to simplify testing whether or not a Table is linked to a Database...James Ahlborn2015-02-132-0/+24
* handle input String boolean valuesJames Ahlborn2015-01-311-2/+7
* Make ColumnBuilder.setMaxLength do the right thing regardless of column type....James Ahlborn2015-01-312-4/+31
* minor cleanup in toInternalValueJames Ahlborn2015-01-161-38/+38
* make SimpleColumnMatcher handle a wider range of input data types by coercing...James Ahlborn2015-01-162-12/+97
* Better validation of identifier names (disallow invalid characters according ...James Ahlborn2014-12-045-9/+75
* Don't double quote already quoted identifiers. fixes patch 18James Ahlborn2014-12-031-1/+8
* Fix table name quoting for append and make table queries. fixes patch #17James Ahlborn2014-12-012-2/+4
* Add newer sql type to access type mappings if the jvm supports them. fixes #113James Ahlborn2014-11-261-0/+27
* make money columns report accurate scale/precision, fixes #112James Ahlborn2014-11-221-1/+2
* rework unicode compression support, fixes issue 111James Ahlborn2014-11-158-1685/+63
* more unit test perf tweaksJames Ahlborn2014-10-131-1/+6
* fix regression where empty memo values are returned as null (issue 110)James Ahlborn2014-09-291-1/+4
* only need to generate index row values once per lookup iteration James Ahlborn2014-09-222-16/+61
* add unit test for iteration early exit fixJames Ahlborn2014-09-221-6/+2
* IndexCursor can early exit when searching based on indexed values, fixes 109James Ahlborn2014-09-212-26/+47
* fix creation of calculated fieldsJames Ahlborn2014-09-163-10/+32
* Add the ability to create tables with calculated fieldsJames Ahlborn2014-09-134-6/+97
* add tests for builder property settersJames Ahlborn2014-09-111-1/+1
* add some unit test for property type inferenceJames Ahlborn2014-09-091-2/+3
* add ability to set properties in the various BuldersJames Ahlborn2014-09-095-12/+290
* some minor cleanups for reading and writing calculated columns (issue #105)James Ahlborn2014-09-087-32/+86
* initial support for reading and writing calculated columns (issue #105)James Ahlborn2014-09-0714-576/+1033