MCPcopy
hub / github.com/sequelize/sequelize / constructor

Method constructor

src/dialects/oracle/query.js:15–28  ·  view source on GitHub ↗
(connection, sequelize, options)

Source from the content-addressed store, hash-verified

13
14export class OracleQuery extends AbstractQuery {
15 constructor(connection, sequelize, options) {
16 super(connection, sequelize, options);
17 this.options = _.extend(
18 {
19 logging: console.log,
20 plain: false,
21 raw: false
22 },
23 options || {}
24 );
25
26 this.checkLoggingOption();
27 this.outFormat = options.outFormat || this.sequelize.connectionManager.lib.OBJECT;
28 }
29
30 getInsertIdField() {
31 return 'id';

Callers

nothing calls this directly

Calls 2

extendMethod · 0.80
checkLoggingOptionMethod · 0.80

Tested by

no test coverage detected