summaryrefslogtreecommitdiff
path: root/packages/fcl-db
diff options
context:
space:
mode:
authormichael <michael@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-06-26 08:58:28 +0000
committermichael <michael@3ad0048d-3df7-0310-abae-a5850022a9f2>2015-06-26 08:58:28 +0000
commitad2dcfa90a4e852abe1900368a134c646665ec52 (patch)
tree3df57a8c6ca33e4cbdc8cdcf7296212a744bcdd9 /packages/fcl-db
parent29b200ed5c36d5e85a3437081a5cf89ac6ff07be (diff)
downloadfpc-ad2dcfa90a4e852abe1900368a134c646665ec52.tar.gz
* Correct error message for unknown connector, add param value message
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@31156 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/fcl-db')
-rw-r--r--packages/fcl-db/src/base/dbconst.pas3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/fcl-db/src/base/dbconst.pas b/packages/fcl-db/src/base/dbconst.pas
index 0be600018b..7a575c651e 100644
--- a/packages/fcl-db/src/base/dbconst.pas
+++ b/packages/fcl-db/src/base/dbconst.pas
@@ -101,7 +101,7 @@ Resourcestring
SIndexFieldMissing = 'Cannot access index field ''%s''';
SNoFieldIndexes = 'No index currently active';
SNotIndexField = 'Field ''%s'' is not indexed and cannot be modified';
- SErrUnknownConnectorType = 'Unknown connector type';
+ SErrUnknownConnectorType = 'Unknown connector type: "%s"';
SNoIndexFieldNameGiven = 'There are no fields selected to base the index on';
SStreamNotRecognised = 'The data-stream format is not recognized';
SNoReaderClassRegistered = 'There is no TDatapacketReaderClass registered for this kind of data-stream';
@@ -123,6 +123,7 @@ Resourcestring
SErrRefreshEmptyResult = 'Refresh SQL resulted in empty result set.';
SErrNoKeyFieldForRefreshClause = 'No key field found to construct refresh SQL WHERE clause';
SErrFailedToFetchReturningResult = 'Failed to fetch returning result';
+ SLogParamValue = 'Parameter "%s" value : "%s"';
Implementation