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

📄 midconst.pas

📁 DELPHI皮肤
💻 PAS
字号:
{ *************************************************************************** }
{                                                                             }
{ Kylix and Delphi Cross-Platform Visual Component Library                    }
{                                                                             }
{ Copyright (c) 1997, 2001 Borland Software Corporation                       }
{                                                                             }
{ *************************************************************************** }


unit MidConst;

interface

const
{ Do not localize }
  MIDAS_CatDesc = 'Borland DataSnap Application Servers';
  CATID_MIDASAppServer: TGUID = '{13E85B3C-9508-11D2-AB63-00C04FA35CFA}';
  MIDASInterceptor_CatDesc = 'Borland DataSnap Application Servers';
  CATID_MIDASInterceptor: TGUID = '{6BFD12F2-7004-11D4-BE3C-0001023E6E0F}';
  SCatImplBaseKey = '%s\Implemented Categories';
  SCatImplKey = SCatImplBaseKey + '\%s';
  MIDAS_DLL = 'MIDAS.DLL';
  SClsid = 'CLSID\';
  SPooled = 'Pooled';
  SMaxObjects = 'MaxObjects';
  STimeout = 'Timeout';
  SSingleton = 'Singleton';
  SSockets = 'Sockets';
  SWeb = 'Web';
  SFlagOn = '1';
  SFlagOff = '0';
  MINDATAPACKETSIZE = 8;   
{$IFDEF LINUX}
  SMidasLib = 'libmidas.so.1';
{$ENDIF}
{$IFDEF MSWINDOWS}
  SMidasLib = 'midas.dll';
{$ENDIF}
resourcestring
  { App Server }
  SProviderNotExported = 'Provider 不能输出: %s';

  { DBClient }
  SNoDataProvider = '缺少 data provider 或者 data packet';
  SInvalidDataPacket = '无效的数据包';
  SRefreshError = '刷新数据之前必须应用更新操作';
  SProviderInvalid = '无效的provider. 应用程序的 Provider 必须是空闲的';
  SServerNameBlank = '不能连接, %s 必须包含一个有效的ServerName或者ServerGUID';
  SRepositoryIdBlank = 'C不能连接, %s 必须包含一个有效的 repository id';
  SAggsGroupingLevel = '分组级别超过当前的索引字段数目';
  SAggsNoSuchLevel = '分组级别未定义';
  SNoCircularReference = '不允许循环应用provider';
  SErrorLoadingMidas = '引导MIDAS.DLL错误';
  SCannotCreateDataSet = '没有定义字段. 不能建立数据库';
  SInvalidClone = 'CloneConnection无效:  截然不同的 ClientDataSet 派生';
  SCDSDlgOpenCaption = '打开 MyBase table';
  SNoConnectToBroker = '不允许连接到 TConnectionBroker';

  { MConnect }
  SSocketReadError = '读取socket错误';
  SInvalidProviderName = 'Provider的名称 "%s" 没有经过服务器的验证';
  SBadVariantType = '不支持的变量类型: %s';
  SInvalidAction = '无效的行为标准: %d';
  SNoParentConnection = 'ParentConnection没有赋值';
  SBlankChildName = 'ChildName 不能为空';

  { Resolver }
  SInvalidResponse = '无效的响应';
  SRecordNotFound = '记录没有建立';
  STooManyRecordsModified = '更新将影响到多于一条的记录.';

  { Provider }
  SInvalidOptParamType = '值不能保存在可变参数里';
  SMissingDataSet = '缺少的DataSet属性';
  SConstraintFailed = '记录或者字段约束失败.';
  SField = '字段';
  SReadOnlyProvider = '不能在只读的provider中应用更新';
  SNoKeySpecified = '不能找到记录. 没有指定 key';
  SFieldNameTooLong = '字段名不能大于 %d 字符. 试着设置 dataset 的 ObjectView 为 True';
  SNoDataSets = '当使用嵌套的datasets或者引用时,不能决定dataset';
  SRecConstFail = '由于错误"%s",准备的记录约束失败';
  SFieldConstFail = '由于错误"%s",准备的字段约束失败';
  SDefExprFail = '由于错误"%s",准备的缺省表达式失败';
  SArrayElementError = '不支持基本类型为 %s 的数组';
  SNoTableName = '不能决定记录. 表名没有发现.';
  SNoEditsAllowed = '不允许修改';
  SNoDeletesAllowed = '不允许删除';
  SNoInsertsAllowed = '不允许插入';
  SCannotChangeCommandText = '不允许改变CommandText';
  SAggregatesActive = 'Operation not allowed with aggregates active';

  { ObjectBroker }
  SNoServers = '没有服务器可利用';

  { ConnectionBroker }

  SConnectionMissing = '需要打开之前连接';
  SNoCircularConnection = '不允许循环引用的连接';

  { Socket Connection }
  SReturnError = '预期的值未被承认';
  SNoWinSock2 = '使用socket连接必须安装WinSock 2';

  { Web Connection }
  SURLRequired = 'URL 不可缺少';
  SDefaultURL = 'http://server.company.com/scripts/httpsrvr.dll';
  SInvalidURL = 'URL must be in the form "http://server.company.com/scripts/httpsrvr.dll"';
  SServerIsBusy = '服务器忙';

  SObjectNotAvailable = '对象不可以用: %s';

  { SuperComponents }
  SMasterNotOpen = '不能在主表关闭的情况下打开从表';

implementation

end.

⌨️ 快捷键说明

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