public Column(TablesDataSet.ColumnRow row)
        {
            Name = row.Column_Name;
            DataType = row.Data_Type;

            Generate = true;
        }
        public Table(Schema schema, TablesDataSet.TableRow row)
        {
            Schema = schema;

            Name = row.Table_Name;

            Columns = LoadColumns();
        }
 public Schema(Connection connection, TablesDataSet.SchemaRow row)
 {
     Connection = connection;
     Name = row.Table_Schema;
 }