sqlite3-transactions
sqlite3-transactions copied to clipboard
Adds transactions support to node-sqlite3.
hello i started to use sqlite3-transactions but when i try to use it i got that error `(node:6747) DeprecationWarning: sys is deprecated. Use util instead.` my nodejs version 6.1.0 also...
Running this on a nwjs-compiled sqlite3 in nwjs ``` db.run ("CREATE TABLE `test` (`index` INTEGER) PRIMARY KEY(`INTEGER`);"); db.beginTransaction(function(err, transaction) { transaction.run("INSERT ..."); //left this in by accident and even this...
Hi there, I'd like to use transactions with sqlite3, but it seems like this library has not received a lot of love recently. Does node-sqlite3 now support transactions? I don't...
Hi I was testing your node module, the test i made was to put intencionally a error in one query in a list of queries to generate a rollback, but...
var sqlite3 = require('sqlite3').verbose(); var TransactionDatabase = require("sqlite3-transactions").TransactionDatabase; var db = new TransactionDatabase( new sqlite3.Database(":memory:") ); db.run( .... db is undefined... However, if no TransactionDatabase is used, the above run...
There is a bug, when I execute some queries after commit (inside callback). I keep getting: node_modules\sqlite3-transactions\sqlite3-transactions.js:135 object[method].apply(object, args); Here is test code: ``` javascript var TransactionTest = function ()...