Update sqlite.php

This commit is contained in:
Roman Kelesidis 2023-10-21 09:35:26 +07:00
parent 78bf42da08
commit 1317f40898

View File

@ -264,6 +264,11 @@ class sqlite_common extends cache_common
return $result;
}
function insert_id()
{
return $this->dbh->lastInsertRowID();
}
function fetch_row ($query)
{
$result = $this->query($query);