cu8-sequelize-oracle icon indicating copy to clipboard operation
cu8-sequelize-oracle copied to clipboard

Results 9 cu8-sequelize-oracle issues
Sort by recently updated
recently updated
newest added

When I try to execute a select it marks the following error: ![image](https://user-images.githubusercontent.com/23087522/29491314-bdff6876-851d-11e7-892a-d99272ce0e09.png) My code is: ```javascript var SequelizeMod = require('cu8-sequelize-oracle'); var sequelize = new SequelizeMod('xe', 'test', 'test', { host:...

Bumps [lodash](https://github.com/lodash/lodash) from 3.10.1 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 4.0.0 lodash v4.0.0 2015 was big year! Lodash became the most depended on npm package, passed 1...

dependencies

`var oracledb = require('oracledb'); var Sequelize = require('sequelize-oracle'); var sequelize = new Sequelize('XE', 'system', 'password', { host: 'localhost', dialect: 'oracle', pool: { max: 5, min: 0, idle: 10000 }, });`...

so i update some code for clob update and insert beacuse oracle takes query as string.please review my code.

When I using include option, the limit option will not work correctly. Here is a query that generated within the include option: ``` SELECT * FROM ( SELECT t.*, ROWNUM...

My code is ` return db.sequelize.transaction({ autocommit: false }).then(function (t) { return managerproject.create(req.body, { transaction: t }).then(function () { // resp.send({ status: true }); return t.commit(); }).catch((err) => { return...

This is working great for me except when I kill express, the terminal hangs. This only happens after I run a query, otherwise I can kill express just fine. Here's...

Using Oracle, creating a new row in a table fails when the data assigned to a CLOB column is >4000 characters. The error is > SequelizeDatabaseError: ORA-01704: string literal too...