public CreateIndexCommand(TableCommandBase tableCommandBase)
     : base(tableCommandBase)
 {
 }
		public CreateIndexCommand(TableCommandBase tableCommandBase)
            : base(tableCommandBase)
        {
        }
		public RowInsertCommand(TableCommandBase tableCommandBase)
			: base(tableCommandBase)
		{
			this._rows = null;
		}
 public RowInsertCommand(TableCommandBase tableCommandBase)
     : base(tableCommandBase)
 {
     this._rows = null;
 }
 public CreateTriggersCommand(TableCommandBase tableCommandBase)
     : base(tableCommandBase)
 {
 }
		public CreateTriggersCommand(TableCommandBase tableCommandBase)
            : base (tableCommandBase)
        {
        }
		protected TableCommandBase(TableCommandBase tableCommandBase)
            : this(tableCommandBase.Connection, tableCommandBase.TableDefinition)
        {
        }
Beispiel #8
0
 protected TableCommandBase(TableCommandBase tableCommandBase)
     : this(tableCommandBase.Connection, tableCommandBase.TableDefinition)
 {
 }