UNPKG

oracle-cg-lib

Version:

Library to connect and execute query's normal or in bulk in oracle databases

31 lines (29 loc) 637 B
/** * Object with optional properties to oracle databases * @type {{port: number, limit: number, content: null}} */ const extraProps = { content: null, query: null, limit: 10000, path_client: null, mode: 'thin', minimum: null, maximum: null }; /** * Object with required properties to oracle databases * @type {{database: null, password: null, query: null, host: null, user: null}} */ const objectDb = { dialect: 'oracle', database: null, host: null, port: 1521, password: null, username: null }; module.exports = { extraProps, objectDb };