From: Nando D. <na...@us...> - 2004-09-16 11:42:12
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6520/Core Modified Files: InstantConsts.pas Log Message: Added explicit ordering to externalstored collections; support for changing the data type and size used for ID fields Index: InstantConsts.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantConsts.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** InstantConsts.pas 10 Sep 2004 10:16:59 -0000 1.4 --- InstantConsts.pas 16 Sep 2004 11:42:01 -0000 1.5 *************** *** 25,29 **** * * Contributor(s): Nando Dessena ! * * ***** END LICENSE BLOCK ***** *) --- 25,29 ---- * * Contributor(s): Nando Dessena ! * - Added explicit ordering to externalstored collections. * ***** END LICENSE BLOCK ***** *) *************** *** 61,64 **** --- 61,65 ---- InstantParentAttributeFieldName = 'ParentAttribute'; InstantChildIdFieldName = 'ChildId'; + InstantSequenceNoFieldName = 'SequenceNo'; InstantChildClassFieldName = 'ChildClass'; *************** *** 149,152 **** --- 150,154 ---- SUnknownAttributeClass = 'Unknown attribute class for attribute %s(''%s'')'; SUnspecifiedCommand = 'Command is not specified'; + SUnsupportedDataType = 'Unsupported datatype: %s'; SUnsupportedType = 'Unsupported type: %s'; SUpdateConflict = 'Object %s(''%s'') was updated by another session'; |