Deveel.Data.Sql.Statements.AlterTriggerStatement.PrepareStatement C# (CSharp) 메소드

PrepareStatement() 보호된 메소드

protected PrepareStatement ( IRequest context ) : SqlStatement
context IRequest
리턴 SqlStatement
        protected override SqlStatement PrepareStatement(IRequest context)
        {
            var triggerName = context.Access().ResolveObjectName(DbObjectType.Trigger, TriggerName);
            var action = Action;
            if (action is IStatementPreparable)
                action = (IAlterTriggerAction) (action as IStatementPreparable).Prepare(context);

            return new AlterTriggerStatement(triggerName, action);
        }