node-pg-transaction
node-pg-transaction copied to clipboard
How to know which version of node does pg-transaction support? Does it support latest node version 8.9.3 ?
As the title says. It seems that the changelog hasn't been updated since 1.0.2.
Current code: if(typeof(savepoint) === 'function'){ savepoint = null; callback = savepoint; } should be: if(typeof(savepoint) === 'function'){ callback = savepoint; savepoint = null; }
Hello, I have a problem handling errors in transactions. The use case is: 1. upload of image + meta data 2. creation of digest of the image to be used...