node-oracle icon indicating copy to clipboard operation
node-oracle copied to clipboard

Segmentation fault during commit

Open solmsted opened this issue 11 years ago • 0 comments

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);
});

solmsted avatar Sep 09 '13 18:09 solmsted