parent
9351e889e7
commit
96b1df55b0
2 changed files with 2 additions and 2 deletions
|
|
@ -83,7 +83,7 @@ class Pgsql implements \PHPCI\Plugin
|
|||
$pdo = new PDO('pgsql:host=' . $this->host, $this->user, $this->pass, $opts);
|
||||
|
||||
foreach ($this->queries as $query) {
|
||||
$pdo->query($query);
|
||||
$pdo->query($this->phpci->interpolate($query));
|
||||
}
|
||||
} catch (\Exception $ex) {
|
||||
$this->phpci->logFailure($ex->getMessage());
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class Sqlite implements \PHPCI\Plugin
|
|||
$pdo = new PDO('sqlite:' . $this->path, $opts);
|
||||
|
||||
foreach ($this->queries as $query) {
|
||||
$pdo->query($query);
|
||||
$pdo->query($this->phpci->interpolate($query));
|
||||
}
|
||||
} catch (\Exception $ex) {
|
||||
$this->phpci->logFailure($ex->getMessage());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue