diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2018-12-17 21:39:40 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2018-12-17 21:39:40 +0000 |
commit | 112cb827e960be047f38cd7c60b27b4202f02596 (patch) | |
tree | be9a0f743104ac3531edea0d44380207b761f9de /src/changes | |
parent | cd6d6e622caf9957dada889def6f95e1a75f106d (diff) | |
download | jackcess-112cb827e960be047f38cd7c60b27b4202f02596.tar.gz jackcess-112cb827e960be047f38cd7c60b27b4202f02596.zip |
Ignore column validators for read-only dbs. This will avoid irrelevant failures when reading databases which have invalid column properties. Fixes #150
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1240 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/changes')
-rw-r--r-- | src/changes/changes.xml | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 74c82ad..3d1160d 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -6,8 +6,26 @@ <body> <release version="2.2.1" date="TBD"> <action dev="jahlborn" type="update"> - Implement IsNumeric function. Add support for hex/oct integer - strings. + Implement the majority of the missing standard functions: + FormatCurrency, FormatDateTime, FormatNumber, FormatPercent, Val, + DateAdd, DateDiff, DatePart, MonthName, WeekdayName, DDB, IPmt, PPmt, + Rate, SLN, SYD, Format, Replace, StrConv. (Note that the internal API + for the expr package has changed in an incompatible way. However, + since the API is still experimental, this was deemed acceptable for a + minor version.). Note that many of the financial functions were + copied and adpated from the Apache POI and UCanAccess projects (which + are both under the Apache License 2.0). + </action> + <action dev="jahlborn" type="update"> + Implement more type coercion methods for expressions. Add support for + hex/oct integer strings. Add support for number strings with commas. + Add support for coercing numeric String to a date/time value. Add + support for date/time values with implicit (current) year. + </action> + <action dev="jahlborn" type="fix" system="SourceForge2" issue="150"> + Ignore column validators for read-only dbs. This will avoid + irrelevant failures when reading databases which have invalid column + properties. </action> </release> <release version="2.2.0" date="2018-09-08" |