This commit is contained in:
2021-04-08 19:24:17 +02:00
parent 4cd6dd2067
commit adf7f19df7
3 changed files with 3 additions and 7 deletions

View File

@@ -37,11 +37,6 @@ class Insert extends Query {
return $this;
}
public function execute() {
$fetchResult = !empty($this->sql->getReturning($this->returning));
return $this->sql->executeQuery($this, $fetchResult);
}
public function getTableName(): string { return $this->tableName; }
public function getColumns(): array { return $this->columns; }
public function getRows(): array { return $this->rows; }