Open
Description
Hi there,
I've got a question regarding select statements from javascript with an sqlite database, where I can have null values as parameter.
await database.select('SELECT * FROM table WHERE something = $1', [null]);
This is not working. How can this be done?
In Sqlite the operator should be IS NULL
Thank you