Merge 13.0->trunk

This commit is contained in:
Kim Alvefur 2025-02-16 11:57:18 +01:00
commit 5c2dbef89d

View file

@ -84,7 +84,7 @@ function engine:connect()
dbh:autocommit(false); -- don't commit automatically
self.conn = dbh;
self.prepared = {};
if params.password then
if params.driver == "SQLite3" and params.password then
local ok, err = self:execute(("PRAGMA key='%s'"):format(dbh:quote(params.password)));
if not ok then
return ok, err;