gasqlparserconsts.pas

来自「一个sql语法分析程序」· PAS 代码 · 共 34 行

PAS
34
字号
{*******************************************************}
{                                                       }
{       Advanced SQL statement parser                   }
{       Copyright (c) 2001 AS Gaiasoft                  }
{       Created by Gert Kello                           }
{                                                       }
{*******************************************************}

unit gaSQLParserConsts;

interface

resourcestring
  SUnknownStatementState = '%s: Unexpected statement state "%s". Don''t know how to modify it';
  STokenInsertBeforeNotInSQL = 'Token to be used qas insert point is not a part of current SQL';
  STokenToBeRemovedNotInSQL = 'Token to be removed is not a part of current SQL';
  STokenToBeReplacedNotInSQL = 'Token to be replaced is not a part of current SQL';
  SWrongSpecialChar = 'Char "%s" is treated as speacial char but it''s type is unknown';
  SerrUnecpectedFieldParseState = 'Unexpected field expression parsing state "%s"';
  SerrFieldParseFinised = 'Field expression parsing is finished. Token not added to field expression';
  SerrTableParseFinised = 'Table reference parsing is finished. Token not added to table reference expression';
  SerrWrongTokenCountInArg = 'Wrong token count in argument for %s: expected %d actual %d';
  SerrNoInsPointForAlias = 'Can''t find a point where the field alias should go..';
  SerrFieldAttrCantBeChangedInExpression = 'Can not change field attributes in expression';
  SerrNoTableForAlias = 'Can''t set alias for table without table name';
  SerrTableAliasNotAllowed = 'Using table alias is not allowed';
  SerrNowOwnerParser = 'Statement part cannot be editied if owning statement not set';
  SerrStmPartWithoutStm = 'Can''t create statement part without owner statement';

implementation

end.

⌨️ 快捷键说明

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