Browse Source

* Forgot to commit constants used in sqldb logging

git-svn-id: trunk@16499 -
michael 14 years ago
parent
commit
627bc7f73b
1 changed files with 4 additions and 1 deletions
  1. 4 1
      packages/fcl-db/src/base/dbconst.pas

+ 4 - 1
packages/fcl-db/src/base/dbconst.pas

@@ -105,7 +105,10 @@ Resourcestring
   SStreamNotRecognised     = 'The data-stream format is not recognized';
   SNoReaderClassRegistered = 'There is no TDatapacketReaderClass registered for this kind of data-stream';
   SErrCircularDataSourceReferenceNotAllowed = 'Circular datasource references are not allowed.';
-  
+  SCommitting              = 'Committing transaction';
+  SRollingBack             = 'Rolling back transaction';
+  SCommitRetaining         = 'Commit and retaining transaction';
+  SRollBackRetaining       = 'Rollback and retaining transaction';
 
 Implementation