From 2627964fec4dc20c996b8a84cb8e1024d32a2c32 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 27 Aug 2019 07:07:01 +0000 Subject: [PATCH] * Merging revisions 42350 from trunk: ------------------------------------------------------------------------ r42350 | michael | 2019-07-11 22:17:29 +0200 (Thu, 11 Jul 2019) | 1 line * Always try to show the field name when possible ------------------------------------------------------------------------ git-svn-id: branches/fixes_3_2@42853 - --- packages/fcl-db/src/base/dbconst.pas | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/fcl-db/src/base/dbconst.pas b/packages/fcl-db/src/base/dbconst.pas index 552ebf72c0..6a2fe77de1 100644 --- a/packages/fcl-db/src/base/dbconst.pas +++ b/packages/fcl-db/src/base/dbconst.pas @@ -65,6 +65,7 @@ Resourcestring SNotEditing = 'Operation not allowed, dataset "%s" is not in an edit or insert state.'; SParameterNotFound = 'Parameter "%s" not found'; SRangeError = '%f is not between %f and %f for %s'; + SRangeError2 = '%f is not between %f and %f.'; SReadOnlyField = 'Field %s cannot be modified, it is read-only.'; STransactionRegistered = 'Transaction already registered : "%s"'; SUniDirectional = 'Operation cannot be performed on an unidirectional dataset'; @@ -124,6 +125,8 @@ Resourcestring SErrNoKeyFieldForRefreshClause = 'No key field found to construct refresh SQL WHERE clause'; SErrFailedToFetchReturningResult = 'Failed to fetch returning result'; SLogParamValue = 'Parameter "%s" value : "%s"'; + SFieldError = 'Field "%s" error: '; + SInvalidVariant = 'Invalid variant value'; Implementation