Beispiel #1
0
    //===============================================
    public void run_CONFIG_SHARP_SHOW_DATA(string[] args)
    {
        Console.Write("\n");
        string lQuery = String.Format(@"
        select * from config_data
        ");

        GSQLite.Instance().queryShow(lQuery);
        G_STATE = "S_SAVE";
    }
Beispiel #2
0
    //===============================================
    public void run_SHOW_TABLES(string[] args)
    {
        Console.Write("\n");
        string lQuery = String.Format(@"
        select name from sqlite_master
        where type = 'table'
        ");

        GSQLite.Instance().queryShow(lQuery);
        G_STATE = "S_SAVE";
    }
Beispiel #3
0
 //===============================================
 public void runTest(string[] args)
 {
     GSQLite.Instance();
 }