Ejemplo n.º 1
0
        public new void Execute(FigaroContext context, string args)
        {
            if (string.IsNullOrEmpty(args))
            {
                context.QueryPlan(string.Empty, string.Empty);
                return;
            }

            args = args.Replace("\"\"", "{blank}");
            args = args.Replace("''", "{blank}");

            base.Execute(context, args);
            context.QueryPlan(
                argv[0].Replace("{blank}", string.Empty),
                argv.Length > 1 ? argv[1] : string.Empty
                );
        }