Example #1
0
        void startPrompt()
        {
            Console.Write("Please enter the name of table or view as source." + Environment.NewLine + "Can be comma separated" + Environment.NewLine + " > ");
            string source = Console.ReadLine();

            if (String.IsNullOrEmpty(source.Trim()))
            {
                return;
            }
            RawTableDump dump = new RawTableDump();

            dump.FetchTables(this.con, source);
        }
Example #2
0
 void startPrompt()
 {
     Console.Write("Please enter the name of table or view as source."+Environment.NewLine+"Can be comma separated"+Environment.NewLine+" > ");
     string source = Console.ReadLine();
     if (String.IsNullOrEmpty(source.Trim())) return;
     RawTableDump dump = new RawTableDump();
     dump.FetchTables(this.con, source);
 }