journeyapps / node-sqlcipher

SQLCipher bindings for Node
https://journeyapps.com
BSD 3-Clause "New" or "Revised" License
207 stars 66 forks source link

Unable to set PRAGMA busy_timeout #85

Open ajmasia opened 3 years ago

ajmasia commented 3 years ago

I am experiencing some errors of type SQLITE_BUSY: database is locked and I want to test if configuring thePRAGMA busy_timeout solves this problem. I can't configure it, any idea?

 let db = new sqlite3.Database(dbName);
 db.run('PRAGMA busy_timeout = 6000');
 db.configure("busyTimeout", 6000);

Thanks!