Update sqlite.php

This commit is contained in:
Roman Kelesidis 2023-10-21 09:53:58 +07:00
parent cf962a6653
commit 390971ffc4

View File

@ -300,12 +300,12 @@ class sqlite_common extends cache_common
function close ()
{
return @$this->dbh->close();
@$this->dbh->close();
}
function busy ($timeout)
{
return @$this->dbh->busyTimeout($timeout);
@$this->dbh->busyTimeout($timeout);
}
function get_error_msg ()