public Database()
 {
     SpecifiedPropertyUpdater.Register(this);
     Tables    = new ArrayAdapter <Table>(this, "Table");
     Functions = new ArrayAdapter <Function>(this, "Function");
 }
 public Table()
 {
     Type = new Type();
     SpecifiedPropertyUpdater.Register(this);
 }
 public TableFunctionParameter()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
 public TableFunctionReturn()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
 public Parameter()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
 public Return()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
 public Connection()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
 public Column()
 {
     SpecifiedPropertyUpdater.Register(this);
 }
 public Association()
 {
     SpecifiedPropertyUpdater.Register(this);
     TheseKeys = new CsvArrayAdapter(this, "ThisKey");
     OtherKeys = new CsvArrayAdapter(this, "OtherKey");
 }
Exemple #10
0
 public Function()
 {
     SpecifiedPropertyUpdater.Register(this);
     Parameters = new ArrayAdapter <Parameter>(this, "Parameter");
 }
Exemple #11
0
 public Type()
 {
     SpecifiedPropertyUpdater.Register(this);
     Columns      = new ArrayAdapter <Column>(this, "Items");
     Associations = new ArrayAdapter <Association>(this, "Items");
 }