protected override IExistingSchema CreateItem(string name)
        {
            AlterSchemaCommand alterSchemaCommand = new AlterSchemaCommand(_command, name);

            _command.Add(alterSchemaCommand);
            return(new ExistingSchema(alterSchemaCommand));
        }
Beispiel #2
0
 protected TableCommand(AlterSchemaCommand parent, string tableName)
     : this((Command)parent, tableName)
 {
 }
Beispiel #3
0
 internal TableCollection(AlterSchemaCommand command)
 {
     _command = command;
 }
Beispiel #4
0
 public AlterTableCommand(AlterSchemaCommand parent, string tableName)
     : base(parent, tableName)
 {
 }
Beispiel #5
0
 public AlterTableCommand(AlterSchemaCommand parent, string tableName)
     : base(parent, tableName)
 {
 }
Beispiel #6
0
 public ExistingSchema(AlterSchemaCommand command)
 {
     _command = command;
     _tables  = new TableCollection(command);
 }
Beispiel #7
0
 protected TableCommand(AlterSchemaCommand parent, string tableName)
     : this((Command)parent, tableName)
 {
 }