Skip to content
Advertisement

nodejs sqlite 3 “SQLITE_MISUSE: Database handle is closed” db.run within db.all

So I am trying the following:

JavaScript

This results in “SQLITE_MISUSE: Database handle is closed” Apparently I cannot run the UPDATE query within the db.all callback. But why is that so?

Advertisement

Answer

You should put the second query as an argument to db.serialize(). Then it will wait for it to complete before returning and allowing db.close() to run.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement