⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbconsts.pas

📁 行业应急系统 包括: 应急系统(待遇核发) 发放系统 开发环境:Delphi5 (sp1)+ Oracle 8.05 MultiExport是一个可以将数据按指定字段倒出
💻 PAS
字号:

{*******************************************************}
{                                                       }
{       Borland Delphi Visual Component Library         }
{                                                       }
{       Copyright (c) 1997,99 Inprise Corporation       }
{                                                       }
{*******************************************************}

unit DbConsts;

interface

resourcestring
  SInvalidFieldSize = '无效的字段大小';
  SInvalidFieldKind = '无效的FieldKind';
  SInvalidFieldRegistration = '无效的字段注册';
  SUnknownFieldType = '字段''%s''是未知类型';
  SFieldNameMissing = '缺少字段名';
  SDuplicateFieldName = '重复的字段名''%s''';
  SFieldNotFound = '字段''%s''未发现';
  SFieldAccessError = '不能存取字段''%s''为类型%s';
  SFieldValueError = '无效值对应字段''%s''';
  SFieldRangeError = '%g 不是有效值对应字段''%s''. 允许范围是%g到%g';
  SInvalidIntegerValue = '''%s''不是有效整数值对应字段''%s''';
  SInvalidBoolValue = '''%s''不是有效布尔值对应字段''%s''';
  SInvalidFloatValue = '''%s''不是有效浮点数值对应字段''%s''';
  SFieldTypeMismatch = '类型不匹配对应''%s'', 预期: %s 实际: %s';
  SFieldSizeMismatch = '大小不匹配对应''%s'', 预期: %d 实际: %d';
  SInvalidVarByteArray = '无效的变量类型或大小对应''%s''';
  SFieldOutOfRange = '字段''%s''的值超出范围';
  SBCDOverflow = '(溢出)';
  SFieldRequired = '字段''%s''必须有值';
  SDataSetMissing = '字段''%s'' 没有dataset';
  SInvalidCalcType = '字段''%s''不能是calculated或lookup字段';
  SFieldReadOnly = '字段''%s''不能被修改';
  SFieldIndexError = '字段索引超出范围';
  SNoFieldIndexes = '当前没有激活的索引';
  SNotIndexField = '字段''%s''没有被索引并且不能被修改';
  SIndexFieldMissing = '不能存取索引字段''%s''';
  SDuplicateIndexName = '重复的索引名''%s''';
  SNoIndexForFields = '没有索引对应''%s''';
  SIndexNotFound = '索引''%s''未发现';
  SDuplicateName = '重复名''%s''存在 %s';
  SCircularDataLink = '循环数据连接不被允许';
  SLookupInfoError = 'Lookup信息对应字段''%s''不完全';
  SDataSourceChange = 'DataSource不能被修改';
  SNoNestedMasterSource = 'Nested datasets cannot have a MasterSource';
  SDataSetOpen = '不能在打开的数据集上执行这样操作';
  SNotEditing = '数据集不在编辑或插入模式';
  SDataSetClosed = '不能在关闭的数据集上执行这样操作';
  SDataSetEmpty = '不能在空数据集上执行这样操作';
  SDataSetReadOnly = '不能修改只读数据集';
  SNestedDataSetClass = '嵌套数据集必须继承自%s';
  SExprTermination = '过滤器表达式不正确地结束';
  SExprNameError = '未结束的字段名';
  SExprStringError = '未结束的字符串常量';
  SExprInvalidChar = '无效的过滤器表达式字符: ''%s''';
  SExprNoLParen = '预期''(''但发现%s';
  SExprNoRParen = '预期'')''但发现%s';
  SExprNoRParenOrComma = '预期'')'' 或 '',''但发现%s';
  SExprExpected = '预期表达式但发现%s';
  SExprBadField = '字段''%s''不能用于过滤器表达式';
  SExprBadNullTest = 'NULL only allowed with ''='' and ''<>''';
  SExprRangeError = '常量超出范围';
  SExprNotBoolean = '字段''%s''不是布尔类型';
  SExprIncorrect = 'Incorrectly formed filter expression';
  SExprNothing = 'nothing';
  SExprTypeMis = '表达式类型不匹配';
  SExprBadScope = 'Operation cannot mix aggregate value with record-varying value';
  SExprNoArith = '在过滤器表达式的算术不被支持';
  SExprNotAgg = '表达式不是合计表达式Expression';
  SExprBadConst = '常量不是正确类型%s';
  SExprNoAggFilter = '合计表达式不允许用于过滤器';
  SExprEmptyInList = 'IN predicate list may not be empty';
  SInvalidKeywordUse = '无效的关键字使用';
  STextFalse = 'False';
  STextTrue = 'True';
  SParameterNotFound = '参数''%s''未发现';
  SInvalidVersion = '无法装载绑定参数';
  SParamTooBig = '参数''%s'', 不能保存大于%d字节的数据 ';
  SBadFieldType = '字段''%s''是不支持类型';
  SAggActive = '合计激活时属性不能被修改';
  SProviderSQLNotSupported = 'SQL不支持: %s';
  SProviderExecuteNotSupported = '执行不支持: %s';
  SExprNoAggOnCalcs = 'Field ''%s'' is not the correct type of calculated field to be used in an aggregate, use an internalcalc';
  SRecordChanged = '记录为另一用户所修改';
   
  { DBCtrls }
  SFirstRecord = 'First record';
  SPriorRecord = 'Prior record';
  SNextRecord = 'Next record';
  SLastRecord = 'Last record';
  SInsertRecord = '插入记录';
  SDeleteRecord = '删除记录';
  SEditRecord = '编辑记录';
  SPostEdit = '提交编辑';
  SCancelEdit = '取消编辑';
  SRefreshRecord = '更新数据';
  SDeleteRecordQuestion = '删除记录?';
  SDeleteMultipleRecordsQuestion = '删除所有选择的记录?';
  SRecordNotFound = '记录未发现';
  SDataSourceFixed = '不允许在DBCtrlGrid操作';
  SNotReplicatable = '控件不能用于DBCtrlGrid';
  SPropDefByLookup = '属性已经由lookup字段定义';
  STooManyColumns = '网格被请求显示大于256的行数';
  
  { DBLogDlg }
  SRemoteLogin = '远程登录';

  { DBOleEdt }
  SDataBindings = '数据绑定...';

implementation

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -