jayralencar / sqlite-sync.js

Node module to sqlite sync and async
MIT License
78 stars 30 forks source link

does is support 'begin' and 'commit' #1

Closed kxjhcs closed 8 years ago

kxjhcs commented 8 years ago

does is support 'begin' and 'commit'? tks

jayralencar commented 8 years ago

Hi @kxjhcs , Not yet. But I'll implemt it in the next release.

kxjhcs commented 8 years ago

@jayralencar image

jayralencar commented 8 years ago

Hi @kxjhcs For now you can do this:

sqlite.run("BEGIN; DELETE FROM COMPANYS WHERE ID = 6; ROLLBACK;");

I dont know if it will fix your problem. Ok?