home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / zkuste / delphi / kompon / d5 / ADO.ZIP / src / AdoConsts.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-12-23  |  1.6 KB  |  37 lines

  1. unit AdoConsts;
  2.  
  3. interface
  4.  
  5. const
  6.   emNoConnection = 'Property Connection is not set';
  7.   emNoConnectionActive = 'Connection is not active';
  8.   emNoConnectionString = 'Property ConnectionString is not set';
  9.   emNoRecordset = 'Property Recordset is not set';
  10.   emNoRecordsetActive = 'Recordset is not active';
  11.   emNoSource = 'Property Source is not set';
  12.   emNoStoredProcedures = 'Unable to locate information for stored procedure';
  13.   emNoTables = 'Unable to locate information for tables';
  14.   emNoFields = 'No fields';           
  15.   emNoField = 'No field';
  16.   emAddField = 'Adding fields is not supported';
  17.   emInsertField = 'Inserting fields is not supported';
  18.   emDeleteField = 'Deleting fields is not supported';
  19.   emInvalidFilter = 'Invalid filter criteria';
  20.   emInvalidFilterMaster = 'When recordset work in master-detail mode filter must be a string variable';     
  21.   emNoMasterRecordset = 'Property MasterRecordset is not set';
  22.   emNoMasterSource = 'Property MasterDataset.Source is not set';
  23.   emCommandType = 'Incorect CommandType';
  24.   emNoParameter = 'No Parameter';
  25.   emNoParameters = 'No Parameters';
  26.   emInvalidParameter = 'Invalid Parameter';
  27.   emNoCommandText = 'Property CommandText is not set';
  28.   emCreateParameter = 'Cannot create parameter';
  29.   emAssignFieldValue = 'Cannot assign value to field "%s".'#10'Error: %s.';
  30.   //emAssignFieldValue = 'Nie mo┐na zapisaµ nowej warto£ci pola "%s".'#10'B│╣d: %s.';
  31.   emGetFieldValue = 'Cannot get value from field "%s".'#10'Error: %s.';
  32.   //emGetFieldValue = 'Nie mo┐na odczytaµ warto£ci pola "%s".'#10'B│╣d: %s.';
  33.  
  34. implementation
  35.  
  36. end.
  37.