home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Source / Vcl / dbconsts.pas < prev    next >
Pascal/Delphi Source File  |  1999-08-11  |  6KB  |  117 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Visual Component Library         }
  5. {                                                       }
  6. {       Copyright (c) 1997,99 Inprise Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit DbConsts;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   SInvalidFieldSize = 'Invalid field size';
  16.   SInvalidFieldKind = 'Invalid FieldKind';
  17.   SInvalidFieldRegistration = 'Invalid field registration';
  18.   SUnknownFieldType = 'Field ''%s'' is of an unknown type';
  19.   SFieldNameMissing = 'Field name missing';
  20.   SDuplicateFieldName = 'Duplicate field name ''%s''';
  21.   SFieldNotFound = 'Field ''%s'' not found';
  22.   SFieldAccessError = 'Cannot access field ''%s'' as type %s';
  23.   SFieldValueError = 'Invalid value for field ''%s''';
  24.   SFieldRangeError = '%g is not a valid value for field ''%s''. The allowed range is %g to %g';
  25.   SInvalidIntegerValue = '''%s'' is not a valid integer value for field ''%s''';
  26.   SInvalidBoolValue = '''%s'' is not a valid boolean value for field ''%s''';
  27.   SInvalidFloatValue = '''%s'' is not a valid floating point value for field ''%s''';
  28.   SFieldTypeMismatch = 'Type mismatch for field ''%s'', expecting: %s actual: %s';
  29.   SFieldSizeMismatch = 'Size mismatch for field ''%s'', expecting: %d actual: %d';
  30.   SInvalidVarByteArray = 'Invalid variant type or size for field ''%s''';
  31.   SFieldOutOfRange = 'Value of field ''%s'' is out of range';
  32.   SBCDOverflow = '(Overflow)';
  33.   SFieldRequired = 'Field ''%s'' must have a value';
  34.   SDataSetMissing = 'Field ''%s'' has no dataset';
  35.   SInvalidCalcType = 'Field ''%s'' cannot be a calculated or lookup field';
  36.   SFieldReadOnly = 'Field ''%s'' cannot be modified';
  37.   SFieldIndexError = 'Field index out of range';
  38.   SNoFieldIndexes = 'No index currently active';
  39.   SNotIndexField = 'Field ''%s'' is not indexed and cannot be modified';
  40.   SIndexFieldMissing = 'Cannot access index field ''%s''';
  41.   SDuplicateIndexName = 'Duplicate index name ''%s''';
  42.   SNoIndexForFields = 'No index for fields ''%s''';
  43.   SIndexNotFound = 'Index ''%s'' not found';
  44.   SDuplicateName = 'Duplicate name ''%s'' in %s';
  45.   SCircularDataLink = 'Circular datalinks are not allowed';
  46.   SLookupInfoError = 'Lookup information for field ''%s'' is incomplete';
  47.   SDataSourceChange = 'DataSource cannot be changed';
  48.   SNoNestedMasterSource = 'Nested datasets cannot have a MasterSource';
  49.   SDataSetOpen = 'Cannot perform this operation on an open dataset';
  50.   SNotEditing = 'Dataset not in edit or insert mode';
  51.   SDataSetClosed = 'Cannot perform this operation on a closed dataset';
  52.   SDataSetEmpty = 'Cannot perform this operation on an empty dataset';
  53.   SDataSetReadOnly = 'Cannot modify a read-only dataset';
  54.   SNestedDataSetClass = 'Nested dataset must inherit from %s';
  55.   SExprTermination = 'Filter expression incorrectly terminated';
  56.   SExprNameError = 'Unterminated field name';
  57.   SExprStringError = 'Unterminated string constant';
  58.   SExprInvalidChar = 'Invalid filter expression character: ''%s''';
  59.   SExprNoLParen = '''('' expected but %s found';
  60.   SExprNoRParen = ''')'' expected but %s found';
  61.   SExprNoRParenOrComma = ''')'' or '','' expected but %s found';
  62.   SExprExpected = 'Expression expected but %s found';
  63.   SExprBadField = 'Field ''%s'' cannot be used in a filter expression';
  64.   SExprBadNullTest = 'NULL only allowed with ''='' and ''<>''';
  65.   SExprRangeError = 'Constant out of range';
  66.   SExprNotBoolean = 'Field ''%s'' is not of type Boolean';
  67.   SExprIncorrect = 'Incorrectly formed filter expression';
  68.   SExprNothing = 'nothing';
  69.   SExprTypeMis = 'Type mismatch in expression';
  70.   SExprBadScope = 'Operation cannot mix aggregate value with record-varying value';
  71.   SExprNoArith = 'Arithmetic in filter expressions not supported';
  72.   SExprNotAgg = 'Expression is not an aggregate expression';
  73.   SExprBadConst = 'Constant is not correct type %s';
  74.   SExprNoAggFilter = 'Aggregate expressions not allowed in filters';
  75.   SExprEmptyInList = 'IN predicate list may not be empty';
  76.   SInvalidKeywordUse = 'Invalid use of keyword';
  77.   STextFalse = 'False';
  78.   STextTrue = 'True';
  79.   SParameterNotFound = 'Parameter ''%s'' not found';
  80.   SInvalidVersion = 'Unable to load bind parameters';
  81.   SParamTooBig = 'Parameter ''%s'', cannot save data larger than %d bytes';
  82.   SBadFieldType = 'Field ''%s'' is of an unsupported type';
  83.   SAggActive = 'Property may not be modified while aggregate is active';
  84.   SProviderSQLNotSupported = 'SQL not supported: %s';
  85.   SProviderExecuteNotSupported = 'Execute not supported: %s';
  86.   SExprNoAggOnCalcs = 'Field ''%s'' is not the correct type of calculated field to be used in an aggregate, use an internalcalc';
  87.   SRecordChanged = 'Record changed by another user';
  88.    
  89.   { DBCtrls }
  90.   SFirstRecord = 'First record';
  91.   SPriorRecord = 'Prior record';
  92.   SNextRecord = 'Next record';
  93.   SLastRecord = 'Last record';
  94.   SInsertRecord = 'Insert record';
  95.   SDeleteRecord = 'Delete record';
  96.   SEditRecord = 'Edit record';
  97.   SPostEdit = 'Post edit';
  98.   SCancelEdit = 'Cancel edit';
  99.   SRefreshRecord = 'Refresh data';
  100.   SDeleteRecordQuestion = 'Delete record?';
  101.   SDeleteMultipleRecordsQuestion = 'Delete all selected records?';
  102.   SRecordNotFound = 'Record not found';
  103.   SDataSourceFixed = 'Operation not allowed in a DBCtrlGrid';
  104.   SNotReplicatable = 'Control cannot be used in a DBCtrlGrid';
  105.   SPropDefByLookup = 'Property already defined by lookup field';
  106.   STooManyColumns = 'Grid requested to display more than 256 columns';
  107.   
  108.   { DBLogDlg }
  109.   SRemoteLogin = 'Remote Login';
  110.  
  111.   { DBOleEdt }
  112.   SDataBindings = 'Data Bindings...';
  113.  
  114. implementation
  115.  
  116. end.
  117.