📄 ibxconst.pas
字号:
{************************************************************************}
{ }
{ Borland Delphi Visual Component Library }
{ InterBase Express core components }
{ }
{ Copyright (c) 1998-2001 Borland Software Corporation }
{ }
{ InterBase Express is based in part on the product }
{ Free IB Components, written by Gregory H. Deatz for }
{ Hoagland, Longo, Moran, Dunst & Doukas Company. }
{ Free IB Components is used under license. }
{ }
{ The contents of this file are subject to the InterBase }
{ Public License Version 1.0 (the "License"); you may not }
{ use this file except in compliance with the License. You may obtain }
{ a copy of the License at http://www.borland.com/interbase/IPL.html }
{ Software distributed under the License is distributed on }
{ an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either }
{ express or implied. See the License for the specific language }
{ governing rights and limitations under the License. }
{ The Original Code was created by InterBase Software Corporation }
{ and its successors. }
{ Portions created by Borland Software Corporation are Copyright }
{ (C) Borland Software Corporation. All Rights Reserved. }
{ Contributor(s): Jeff Overcash }
{ }
{************************************************************************}
unit IBXConst;
interface
uses IBUtils;
const
IBX_Version = 6.0;
resourcestring
{ generic strings used in code }
SIBDatabaseEditor = 'Da&tabase Editor...';
SIBTransactionEditor = '&Transaction Editor...';
SDatabaseFilter = 'Database Files (*.gdb)|*.gdb|All files (*.*)|*.*';
SDisconnectDatabase = 'Database is currently connected. Disconnect and continue?';
SCommitTransaction = 'Transaction is currently Active. Rollback and continue?';
SExecute = 'E&xecute';
SNoDataSet = 'No dataset association';
SSQLGenSelect = 'Must select at least one key field and one update field';
SSQLNotGenerated = 'Update SQL statements not generated, exit anyway?';
SIBUpdateSQLEditor = '&UpdateSQL Editor...';
SIBDataSetEditor = '&Dataset Editor...';
SSQLDataSetOpen = 'Unable to determine field names for %s';
SDefaultTransaction = '%s, Default';
{ strings used in error messages}
SUnknownError = 'Unknown error';
{$IFDEF MSWINDOWS}
SInterBaseMissing = 'InterBase library gds32.dll not found in the path. Please install InterBase to use this functionality';
{$ENDIF}
{$IFDEF LINUX}
SInterBaseMissing = 'InterBase library gds.so.0 not found in the path. Please install InterBase to use this functionality';
{$ENDIF}
SInterBaseInstallMissing = 'InterBase Install DLL ibinstall.dll not found in the path. Please install InterBase 6 to use this functionality';
SIB60feature = '%s is an InterBase 6 function. Please upgrade to InterBase 6 to use this functonality';
SNotSupported = 'Unsupported feature';
SNotPermitted = 'Not permitted';
SFileAccessError = 'Temporary file access error';
SConnectionTimeout = 'Database connection timed out';
SCannotSetDatabase = 'Cannot set database';
SCannotSetTransaction = 'Cannot set transaction';
SOperationCancelled = 'Operation cancelled at user''s request';
SDPBConstantNotSupported = 'DPB Constant (isc_dpb_%s) is unsupported';
SDPBConstantUnknown = 'DPB Constant (%d) is unknown';
STPBConstantNotSupported = 'TPB Constant (isc_tpb_%s) is unsupported';
STPBConstantUnknown = 'TPB Constant (%d) is unknown';
SDatabaseClosed = 'Cannot perform operation -- DB is not open';
SDatabaseOpen = 'Cannot perform operation -- DB is currently open';
SDatabaseNameMissing = 'Database name is missing';
SNotInTransaction = 'Transaction is not active';
SInTransaction = 'Transaction is active';
STimeoutNegative = 'Timeout values cannot be negative';
SNoDatabasesInTransaction = 'No databases are listed in transaction component';
SUpdateWrongDB = 'Updating wrong database';
SUpdateWrongTR = 'Updating wrong transaction. Unique transaction expected in set';
SDatabaseNotAssigned = 'Database not assigned';
STransactionNotAssigned = 'Transaction not assigned';
SXSQLDAIndexOutOfRange = 'XSQLDA index out of range';
SXSQLDANameDoesNotExist = 'XSQLDA name does not exist (%s)';
SEOF = 'End of file';
SBOF = 'Beginning of file';
SInvalidStatementHandle = 'Invalid statement handle';
SSQLOpen = 'IBSQL Open';
SSQLClosed = 'IBSQL Closed';
SDatasetOpen = 'Dataset open';
SDatasetClosed = 'Dataset closed';
SUnknownSQLDataType = 'Unknown SQL Data type (%d)';
SInvalidColumnIndex = 'Invalid column index (index exceeds permitted range)';
SInvalidParamColumnIndex = 'Invalid parameter index (index exceeds permitted range)';
SInvalidDataConversion = 'Invalid data conversion';
SColumnIsNotNullable = 'Column cannot be set to null (%s)';
SBlobCannotBeRead = 'Blob stream cannot be read';
SBlobCannotBeWritten = 'Blob stream cannot be written';
SEmptyQuery = 'Empty query';
SCannotOpenNonSQLSelect = 'Cannot "open" a non-select statement. Use ExecQuery';
SNoFieldAccess = 'No access to field "%s"';
SFieldReadOnly = 'Field "%s" is read-only';
SFieldNotFound = 'Field "%s" not found';
SNotEditing = 'Not in edit mode';
SCannotInsert = 'Cannot insert into dataset. (No insert query)';
SCannotPost = 'Cannot post. (No update/insert query)';
SCannotUpdate = 'Cannot update. (No update query)';
SCannotDelete = 'Cannot delete from dataset. (No delete query)';
SCannotRefresh = 'Cannot refresh row. (No refresh query)';
SBufferNotSet = 'Buffer not set';
SCircularReference = 'Circular references not permitted';
SSQLParseError = 'SQL Parse Error:' + CRLF + CRLF + '%s';
SUserAbort = 'User abort';
SDataSetUniDirectional = 'Data set is uni-directional';
SCannotCreateSharedResource = 'Cannot create shared resource. (Windows error %d)';
SWindowsAPIError = 'Windows API error. (Windows error %d [$%.8x])';
SColumnListsDontMatch = 'Column lists do not match';
SColumnTypesDontMatch = 'Column types don''t match. (From index: %d; To index: %d)';
SCantEndSharedTransaction = 'Can''t end a shared transaction unless it is forced and equal ' +
'to the transaction''s TimeoutAction';
SFieldUnsupportedType = 'Unsupported Field Type';
SCircularDataLink = 'Circular DataLink Reference';
SEmptySQLStatement = 'Empty SQL Statement';
SIsASelectStatement = 'use Open for a Select Statement';
SRequiredParamNotSet = 'Required Param value not set';
SNoStoredProcName = 'No Stored Procedure Name assigned';
SIsAExecuteProcedure = 'use ExecProc for Procedure; use TQuery for Select procedures';
SUpdateFailed = 'Update Failed';
SNotCachedUpdates = 'CachedUpdates not enabled';
SNotLiveRequest = 'Request is not live - cannot modify';
SNoProvider = 'No Provider';
SNoRecordsAffected = 'No Records Affected';
SNoTableName = 'No Table Name assigned';
SCannotCreatePrimaryIndex = 'Cannot Create Primary Index; are created automatically';
SCannotDropSystemIndex = 'Cannot Drop System Index';
STableNameMismatch = 'Table Name Mismatch';
SIndexFieldMissing = 'Index Field Missing';
SInvalidCancellation = 'Cannot Cancel events while processing';
SInvalidEvent = 'Invalid Event';
SMaximumEvents = 'Exceded Maximum Event limits';
SNoEventsRegistered = 'No Events Registered';
SInvalidQueueing = 'Invalid Queueing';
SInvalidRegistration = 'Invalid Registration';
SInvalidBatchMove = 'Invalid Batch Move';
SSQLDialectInvalid = 'SQL Dialect Invalid';
SSPBConstantNotSupported = 'SPB Constant Not supported';
SSPBConstantUnknown = 'SPB Constant Unknown';
SServiceActive = 'Cannot perform operation -- service is not attached';
SServiceInActive = 'Cannot perform operation -- service is attached';
SServerNameMissing = 'Server Name Missing';
SQueryParamsError = 'Query Parameters missing or incorrect';
SStartParamsError = 'start Parameters missing or incorrect';
SOutputParsingError = 'Unexpected Output buffer value';
SUseSpecificProcedures = 'Generic ServiceStart not applicable: Use Specific Procedures to set configuration params';
SSQLMonitorAlreadyPresent = 'SQL Monitor Instance is already present';
SCantPrintValue = 'Cannot print value';
SEOFReached = 'SEOFReached';
SEOFInComment = 'EOF in comment detected';
SEOFInString = 'EOF in string detected';
SParamNameExpected = 'Parameter name expected';
SSuccess = 'Successful execution';
SDelphiException = 'DelphiException %s';
SNoOptionsSet = 'No Install Options selected';
SNoDestinationDirectory = 'DestinationDirectory is not set';
SNosourceDirectory = 'SourceDirectory is not set';
SNoUninstallFile = 'Uninstall File Name is not set';
SOptionNeedsClient = '%s component requires Client to function properly';
SOptionNeedsServer = '%s component requires Server to function properly';
SInvalidOption = 'Invalid option specified';
SInvalidOnErrorResult = 'Unexpected onError return value';
SInvalidOnStatusResult = 'Unexpected onStatus return value';
SInterbaseExpressVersion = 'InterbaseExpress 4.3';
SEditSQL = 'Edit SQL';
SDPBConstantUnknownEx = 'DPB Constant (%s) is unknown';
STPBConstantUnknownEx = 'TPB Constant (%s) is unknown';
SInterbaseExpressVersionEx = 'InterbaseExpress %g';
SUnknownPlan = 'Unknown Error - Can''t retrieve plan';
SFieldSizeMismatch = 'Size Mismatch - Field %s size is too small for data';
SEventAlreadyRegistered = 'Events already registered';
SStringTooLarge = 'Trying to store a string of length %d into a field that can only contain %d';
SIBServiceEditor = '&Service Editor ...';
SIBSuccessConnect = 'Successful Connection';
SNoTimers = 'Not enough timers available';
implementation
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -