Error: Undefined binding(s) detected when compiling SELECT from Bookshelf.js save()
问题 While testing a Bookshelf model insert using the oracledb client (versions bellow), I'm having an strange error. I've tested same code with mysql , pg and sqlite3 clients with no problem in this operation. My model is this: Promotion = bookshelf.model('Promotion', { tableName: 'promotions' }) And the action that triggered the error is this: Promotion.forge({image:"image","featured":false,"price":"2.33","name":"name","description":"description"}).save(null, { method:'insert' }) The insertion