Browse Source

+ fixed compilation

git-svn-id: trunk@1881 -
joost 19 years ago
parent
commit
51d2ca878c

+ 1 - 0
fcl/db/dbconst.pp

@@ -30,6 +30,7 @@ Const
   SErrColumnNotFound       = 'Column "%s" not found.';
   SErrDatabasenAssigned    = 'Database not assigned!';
   SErrNoDatabaseAvailable  = 'Invalid operation: Not attached to database';
+  SErrNoDatabaseName       = 'Database connect string (DatabaseName) not filled in!';
   SErrNoSelectStatement    = 'Cannot open a non-select statement';
   SErrNoStatement          = 'SQL statement not set';
   SErrTransAlreadyActive   = 'Transaction already active';

+ 0 - 3
fcl/db/sqldb/interbase/ibconnection.pp

@@ -90,9 +90,6 @@ implementation
 
 uses strutils;
 
-resourcestring
-  SErrNoDatabaseName = 'Database connect string (DatabaseName) not filled in!';
-
 type
   TTm = packed record
     tm_sec : longint;

+ 0 - 1
fcl/db/sqldb/postgres/pqconnection.pp

@@ -82,7 +82,6 @@ ResourceString
   SErrExecuteFailed = 'Execution of query failed';
   SErrFieldDefsFailed = 'Can not extract field information from query';
   SErrFetchFailed = 'Fetch of data failed';
-  SErrNoDatabaseName = 'Database connect string (DatabaseName) not filled in!';
   SErrPrepareFailed = 'Preparation of query failed.';
 
 const Oid_Bool     = 16;