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

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Visual Component Library         }
  5. {                                                       }
  6. {       Copyright (c) 1999 Inprise Corporation          }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit ADOConst;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   SInvalidEnumValue = 'Invalid Enum Value';
  16.   SMissingConnection = 'Missing Connection or ConnectionString';
  17.   SNoDetailFilter = 'Filter property cannot be used for detail tables';
  18.   SBookmarksRequired = 'Dataset does not support bookmarks, which are required for multi-record data controls'; 
  19.   SMissingCommandText = 'Missing %s property';
  20.   SNoResultSet = 'CommandText does not return a result set';
  21.   SADOCreateError = 'Error creating object.  Please verify that the Microsoft Data Access Components 2.1 (or later) have been properly installed';
  22.   SEventsNotSupported = 'Events are not supported with server side TableDirect cursors';
  23.   SUsupportedFieldType = 'Unsupported field type (%s) in field %s';
  24.   SNoMatchingADOType = 'No matching ADO data type for %s';
  25.   SConnectionRequired = 'A connection component is required for async ExecuteOptions';
  26.   SCantRequery = 'Cannot perform a requery after connection has changed';
  27.   SNoFilterOptions = 'FilterOptions are not supported';
  28.  
  29. implementation
  30.  
  31. end.
  32.