home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / zkuste / delphi / kompon / d5 / ADO.ZIP / src / Ado25Consts.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-11-21  |  981 b   |  26 lines

  1. unit Ado25Consts;
  2.  
  3. interface
  4.  
  5. const
  6.   emNoConnection = 'Property Connection is not set';
  7.   emNoConnectionActive = 'Connection is not active';
  8.   emNoRecordset = 'Property Recordset is not set';
  9.   emNoRecordsetActive = 'Recordset is not active';
  10.   emNoSource = 'Property Source is not set';
  11.   emNoStoredProcedures = 'Unable to locate information for stored procedure';
  12.   emNoTables = 'Unable to locate information for tables';
  13.   emNoFields = 'No fields';           
  14.   emNoField = 'No field';
  15.   emAddField = 'Adding fields is not supported';  
  16.   emInsertField = 'Inserting fields is not supported';
  17.   emDeleteField = 'Deleting fields is not supported';
  18.   emInvalidFilter = 'Invalid filter criteria';
  19.   emInvalidFilterMaster = 'When recordset work in master-detail mode filter must be a string variable';     
  20.   emNoMasterRecordset = 'Property MasterRecordset is not set';
  21.   emNoMasterSource = 'Property MasterDataset.Source is not set';
  22.  
  23. implementation
  24.  
  25. end.
  26.