示例#1
0
 public SQLiteTable()
 {
     //Class5.XCUF1frzK2Woy();
     this.TableName = "";
     this.Columns   = new SQLiteColumnList();
     //base._002Ector();
 }
示例#2
0
        public static void CreateTable()
        {
            var table = new SQLiteTable("DBCONF");
            var cols  = new SQLiteColumnList();

            cols.Add(new SQLiteColumn("id", ColType.Text, true, false, true, ""));
            cols.Add(new SQLiteColumn("dbType"));
            cols.Add(new SQLiteColumn("dbHost"));
            cols.Add(new SQLiteColumn("dbPort"));
            cols.Add(new SQLiteColumn("dbName"));
            cols.Add(new SQLiteColumn("dbUserName"));
            cols.Add(new SQLiteColumn("dbPassword"));
            cols.Add(new SQLiteColumn("updateDate", ColType.DateTime));
            table.SetCols(cols);
            db.CreateTable(table);

            table = new SQLiteTable("PATHCONF");
            cols  = new SQLiteColumnList();
            cols.Add(new SQLiteColumn("code"));
            cols.Add(new SQLiteColumn("name"));
            cols.Add(new SQLiteColumn("value"));
            table.SetCols(cols);
            db.CreateTable(table);
        }
示例#3
0
 public SQLiteTable(string name)
 {
     Name    = name;
     Columns = new SQLiteColumnList();
 }