node-oracle
node-oracle copied to clipboard
Segmentation fault during commit
Whenever I do connection.commit(function (error) { ... });
it crashes the process with signal SIGSEGV.
I've made a workaround for this issue by doing this
connection.commit = function (callbackFunction) {
this.execute("COMMIT", [], callbackFunction);
});