From 112cb827e960be047f38cd7c60b27b4202f02596 Mon Sep 17 00:00:00 2001 From: James Ahlborn Date: Mon, 17 Dec 2018 21:39:40 +0000 Subject: 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 --- src/changes/changes.xml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'src/changes/changes.xml') 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 @@ - 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). + + + 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. + + + Ignore column validators for read-only dbs. This will avoid + irrelevant failures when reading databases which have invalid column + properties.