Example #1
0
        static int Main(string[] args)
        {
            int         retval = 0;
            CommandList cl     = new CommandList(true);

            cl.AddCommand(new DatabaseQueryCommand());
            retval = cl.DoCommand(args);
            return(retval);
        }