We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 322e210 commit 747dc17Copy full SHA for 747dc17
1 file changed
src/AmpPostgresConnectionAdapter.php
@@ -50,8 +50,7 @@ public function getUnderlyingConnection() : PostgresLink {
50
}
51
52
protected function executeInsertSql(string $sql, array $parameters) : void {
53
- $statement = $this->connection->prepare($sql);
54
- $statement->execute($parameters);
+ $this->connection->execute($sql, $parameters);
55
56
57
protected function executeSelectAllSql(string $table) : array {
0 commit comments