We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The constructor of bettersqlite3 is currently called without any options https://github.com/WiseLibs/better-sqlite3/blob/master/docs/api.md#new-databasepath-options in SQLiteService.js:
SQLiteService.js
const dbc = new sqlite(database);
Users should be able to specify options in cds.requires.db.sqlite which are then passed to the constructor of bettersqlite3:
cds.requires.db.sqlite
const dbc = new sqlite(database, this.options.sqlite);
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The constructor of bettersqlite3 is currently called without any options https://github.com/WiseLibs/better-sqlite3/blob/master/docs/api.md#new-databasepath-options in
SQLiteService.js
:Users should be able to specify options in
cds.requires.db.sqlite
which are then passed to the constructor of bettersqlite3:The text was updated successfully, but these errors were encountered: