예제 #1
0
 public Parameter Execute()
 {
     if (_statement != null)
     {
         return(_statement.Execute());
     }
     return(this);
 }
예제 #2
0
        public override Parameter Execute()
        {
            StatementBase statement = GetParam(0);

            if (statement != null)
            {
                statement.Execute();
            }
            return(new Parameter());
        }