We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab68077 commit b6a770fCopy full SHA for b6a770f
src/Dibi/Drivers/SqliteDriver.php
@@ -57,7 +57,7 @@ public function __construct(array $config)
57
58
// enable foreign keys support (defaultly disabled; if disabled then foreign key constraints are not enforced)
59
$version = SQLite3::version();
60
- $this->connection->enableExceptions(false);
+ @$this->connection->enableExceptions(false);
61
if ($version['versionNumber'] >= '3006019') {
62
$this->query('PRAGMA foreign_keys = ON');
63
}
0 commit comments