Skip to content
This repository has been archived by the owner on Oct 8, 2023. It is now read-only.

Commit

Permalink
XII
Browse files Browse the repository at this point in the history
  • Loading branch information
mondrake committed Aug 31, 2023
1 parent 7cd0e37 commit 04b7d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Driver/Database/mysqli/Statement.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function execute($args = [], $options = []) {
// Replace named placeholders with positional ones if needed.
$this->paramsPositions = array_flip(array_keys($args));
$converter = new NamedPlaceholderConverter();
$converter->parse($sql, $args);
$converter->parse($this->queryString, $args);
[$this->queryString, $args] = [$converter->getConvertedSQL(), $converter->getConvertedParameters()];
$this->clientStatement = $this->mysqliConnection->prepare($this->queryString);
}
Expand Down

0 comments on commit 04b7d26

Please sign in to comment.