* Add queue to exec sql use SQLite.

This commit is contained in:
zhouxin
2023-06-19 15:57:40 +08:00
parent c83fad67e7
commit bd582f55e9
2 changed files with 2 additions and 17 deletions
+1 -1
View File
@@ -180,7 +180,7 @@ class sqlite
*/
public function exec(string $sql)
{
return $this->dbh->exec($this->formatSQL($sql));
return $this->pushToQueue($sql);
}
/**