Skip to content

Commit

Permalink
Bugfix on crash
Browse files Browse the repository at this point in the history
  • Loading branch information
joostfaassen committed May 4, 2015
1 parent 4276ce4 commit 97ca2a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Extractor/PdoExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function init()
$res = $this->stmt->execute();
if (!$res) {
$arr = $this->stmt->errorInfo();
throw new RuntimeException($arr[2] . "\n" . $sql);
throw new RuntimeException($arr[2] . "\n" . $this->sql);
}
}

Expand Down

0 comments on commit 97ca2a6

Please sign in to comment.