New SQLLite version problems

The latest version of SQLite 3.46.0 (previously version 3.41.2 was installed on my server) requires the use of double quotes (") instead of single quotes (') in queries.

How can I fix the errors caused by upgrading SQLite, specifically for example: the ‘__performUpload’ error when uploading files and the ‘Undefined constant “_created”’ error when adding a collection?

part of my backend/package.json:
“name”: “cockpit-next”,
“version”: “0.11.2”,

I am using Vue2 with Options API.

Try the latest dev version: releases/develop • Cockpit files

I just replaced all double quotes (") with single quotes (') in SQL queries and it worked.