From: Joao M. <jcm...@us...> - 2005-12-31 11:45:34
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3059/Core Modified Files: InstantConsts.pas Log Message: Added IbFb and MySQL database creation support for ZeosDBO Broker; Moved string constants from InstantZeosDBO to InstantConsts unit. Index: InstantConsts.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantConsts.pas,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** InstantConsts.pas 29 Oct 2005 11:35:57 -0000 1.21 --- InstantConsts.pas 31 Dec 2005 11:45:24 -0000 1.22 *************** *** 25,29 **** * * Contributor(s): ! * Nando Dessena, Steven Mitchell * * ***** END LICENSE BLOCK ***** *) --- 25,29 ---- * * Contributor(s): ! * Nando Dessena, Steven Mitchell, Joao Morais * * ***** END LICENSE BLOCK ***** *) *************** *** 95,98 **** --- 95,99 ---- SConnectorMismatch = 'Connector mismatch'; SContainerNotFound = 'Container: ''%s'' not found for class %s'; + SDatabaseCreationNotSupported = '''%s'' does not support automatic database creation'; SDatabaseEvolutionNonSupported = 'This broker does not support database evolution'; SDatabaseOpen = 'Cannot perform this operation on an open database'; *************** *** 145,148 **** --- 146,150 ---- SOwnershipRecursion = 'Ownership Recursion for object %s(''%s'')'; SPersistentObjectNotAllowed = 'Persistent object %s(''%s'') not allowed.'; + SProtocolNotSupported = 'Protocol ''%s'' not supported'; SSpecifierMissing = 'Specifier missing'; SSQLStatementIndexOutOfBounds = 'SQL statement index out of bounds.'; |