home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Source / Vcl / BDECONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-11  |  4.4 KB  |  85 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Visual Component Library         }
  5. {                                                       }
  6. {       Copyright (c) 1997, 1999 Inprise Corporation    }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit BdeConst;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   SAutoSessionExclusive = 'Cannot enable AutoSessionName property with more than one session on a form or data-module';
  16.   SAutoSessionExists = 'Cannot add a session to the form or data-module while session ''%s'' has AutoSessionName enabled';
  17.   SAutoSessionActive = 'Cannot modify SessionName while AutoSessionName is enabled';
  18.   SDuplicateDatabaseName = 'Duplicate database name ''%s''';
  19.   SDuplicateSessionName = 'Duplicate session name ''%s''';
  20.   SInvalidSessionName = 'Invalid session name %s';
  21.   SDatabaseNameMissing = 'Database name missing';
  22.   SSessionNameMissing = 'Session name missing';
  23.   SDatabaseOpen = 'Cannot perform this operation on an open database';
  24.   SDatabaseClosed = 'Cannot perform this operation on a closed database';
  25.   SDatabaseHandleSet = 'Database handle owned by a different session';
  26.   SSessionActive = 'Cannot perform this operation on an active session';
  27.   SHandleError = 'Error creating cursor handle';
  28.   SInvalidFloatField = 'Cannot convert field ''%s'' to a floating point value';
  29.   SInvalidIntegerField = 'Cannot convert field ''%s'' to an integer value';
  30.   STableMismatch = 'Source and destination tables are incompatible';
  31.   SFieldAssignError = 'Fields ''%s'' and ''%s'' are not assignment compatible';
  32.   SNoReferenceTableName = 'ReferenceTableName not specified for field ''%s''';
  33.   SCompositeIndexError = 'Cannot use array of Field values with Expression Indices';
  34.   SInvalidBatchMove = 'Invalid batch move parameters';
  35.   SEmptySQLStatement = 'No SQL statement available';
  36.   SNoParameterValue = 'No value for parameter ''%s''';
  37.   SNoParameterType = 'No parameter type for parameter ''%s''';
  38.   SLoginError = 'Cannot connect to database ''%s''';
  39.   SInitError = 'An error occurred while attempting to initialize the Borland Database Engine (error $%.4x)';
  40.   SDatabaseEditor = 'Da&tabase Editor...';
  41.   SExplore = 'E&xplore';
  42.   SLinkDetail = '''%s'' cannot be opened';
  43.   SLinkMasterSource = 'The MasterSource property of ''%s'' must be linked to a DataSource';
  44.   SLinkMaster = 'Unable to open the MasterSource Table';
  45.   SGQEVerb = 'S&QL Builder...';
  46.   SBindVerb = 'Define &Parameters...';
  47.   SIDAPILangID = '0009';
  48.   SDisconnectDatabase = 'Database is currently connected. Disconnect and continue?';
  49.   SBDEError = 'BDE error $%.4x';
  50.   SLookupSourceError = 'Unable to use duplicate DataSource and LookupSource';
  51.   SLookupTableError = 'LookupSource must be connected to TTable component';
  52.   SLookupIndexError = '%s must be the lookup table''s active index';
  53.   SParameterTypes = ';Input;Output;Input/Output;Result';
  54.   SInvalidParamFieldType = 'Must have a valid field type selected';
  55.   STruncationError = 'Parameter ''%s'' truncated on output';
  56.   SDataTypes = ';String;SmallInt;Integer;Word;Boolean;Float;Currency;BCD;Date;Time;DateTime;;;;Blob;Memo;Graphic;;;;;Cursor;';
  57.   SResultName = 'Result';
  58.   SDBCaption = '%s%s%s Database';
  59.   SParamEditor = '%s%s%s Parameters';
  60.   SIndexFilesEditor = '%s%s%s Index Files';
  61.   SNoIndexFiles = '(None)';
  62.   SIndexDoesNotExist = 'Index does not exist. Index: %s';
  63.   SNoTableName = 'Missing TableName property';
  64.   SNoDataSetField = 'Missing DataSetField property';
  65.   SBatchExecute = 'E&xecute';
  66.   SNoCachedUpdates = 'Not in cached update mode';
  67.   SInvalidAliasName = 'Invalid alias name %s';
  68.   SNoFieldAccess = 'Cannot access field ''%s'' in a filter';
  69.   SUpdateSQLEditor = '&UpdateSQL Editor...';
  70.   SNoDataSet = 'No dataset association';
  71.   SUntitled = 'Untitled Application';
  72.   SUpdateWrongDB = 'Cannot update, %s is not owned by %s';
  73.   SUpdateFailed = 'Update failed';
  74.   SSQLGenSelect = 'Must select at least one key field and one update field';
  75.   SSQLNotGenerated = 'Update SQL statements not generated, exit anyway?';
  76.   SSQLDataSetOpen = 'Unable to determine field names for %s';
  77.   SLocalTransDirty = 'The transaction isolation level must be dirty read for local databases';
  78.   SMissingDataSet = 'Missing DataSet property';
  79.   SNoProvider = 'No provider available';
  80.   SNotAQuery = 'Dataset is not a query';
  81.  
  82. implementation
  83.  
  84. end.
  85.