├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .jsbeautifyrc ├── .npmignore ├── .stylelintrc.json ├── LICENSE ├── README.md ├── docs ├── CHANGELOG.md └── api.md ├── inch.json ├── index.js ├── lib ├── connection.js ├── constants.js ├── emitter.js ├── extensions.js ├── monitor.js ├── oracledb.js ├── pool.js ├── promise-helper.js ├── record-reader.js ├── record-writer.js ├── resultset-read-stream.js ├── resultset-reader.js ├── rows-reader.js ├── simple-oracledb.js └── stream.js ├── package.json └── test ├── helpers ├── integration-helper.js ├── scripts │ └── setup.sh ├── test-oracledb.js ├── test.sql └── utils.js └── spec ├── connection-spec.js ├── constants-spec.js ├── emitter-spec.js ├── extensions-spec.js ├── index-spec.js ├── integration-spec.js ├── monitor-spec.js ├── oracledb-spec.js ├── pool-spec.js ├── promise-helper-spec.js ├── record-reader-spec.js ├── record-writer-spec.js ├── resultset-read-stream-spec.js ├── resultset-reader-spec.js ├── rows-reader-spec.js ├── simple-oracledb-spec.js ├── stability-spec.js └── stream-spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/.npmignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-standard" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/README.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/docs/api.md -------------------------------------------------------------------------------- /inch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/inch.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/simple-oracledb'); 4 | -------------------------------------------------------------------------------- /lib/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/connection.js -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/emitter.js -------------------------------------------------------------------------------- /lib/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/extensions.js -------------------------------------------------------------------------------- /lib/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/monitor.js -------------------------------------------------------------------------------- /lib/oracledb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/oracledb.js -------------------------------------------------------------------------------- /lib/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/pool.js -------------------------------------------------------------------------------- /lib/promise-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/promise-helper.js -------------------------------------------------------------------------------- /lib/record-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/record-reader.js -------------------------------------------------------------------------------- /lib/record-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/record-writer.js -------------------------------------------------------------------------------- /lib/resultset-read-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/resultset-read-stream.js -------------------------------------------------------------------------------- /lib/resultset-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/resultset-reader.js -------------------------------------------------------------------------------- /lib/rows-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/rows-reader.js -------------------------------------------------------------------------------- /lib/simple-oracledb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/simple-oracledb.js -------------------------------------------------------------------------------- /lib/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/lib/stream.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/package.json -------------------------------------------------------------------------------- /test/helpers/integration-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/helpers/integration-helper.js -------------------------------------------------------------------------------- /test/helpers/scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/helpers/scripts/setup.sh -------------------------------------------------------------------------------- /test/helpers/test-oracledb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/helpers/test-oracledb.js -------------------------------------------------------------------------------- /test/helpers/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/helpers/test.sql -------------------------------------------------------------------------------- /test/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/helpers/utils.js -------------------------------------------------------------------------------- /test/spec/connection-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/connection-spec.js -------------------------------------------------------------------------------- /test/spec/constants-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/constants-spec.js -------------------------------------------------------------------------------- /test/spec/emitter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/emitter-spec.js -------------------------------------------------------------------------------- /test/spec/extensions-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/extensions-spec.js -------------------------------------------------------------------------------- /test/spec/index-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/index-spec.js -------------------------------------------------------------------------------- /test/spec/integration-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/integration-spec.js -------------------------------------------------------------------------------- /test/spec/monitor-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/monitor-spec.js -------------------------------------------------------------------------------- /test/spec/oracledb-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/oracledb-spec.js -------------------------------------------------------------------------------- /test/spec/pool-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/pool-spec.js -------------------------------------------------------------------------------- /test/spec/promise-helper-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/promise-helper-spec.js -------------------------------------------------------------------------------- /test/spec/record-reader-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/record-reader-spec.js -------------------------------------------------------------------------------- /test/spec/record-writer-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/record-writer-spec.js -------------------------------------------------------------------------------- /test/spec/resultset-read-stream-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/resultset-read-stream-spec.js -------------------------------------------------------------------------------- /test/spec/resultset-reader-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/resultset-reader-spec.js -------------------------------------------------------------------------------- /test/spec/rows-reader-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/rows-reader-spec.js -------------------------------------------------------------------------------- /test/spec/simple-oracledb-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/simple-oracledb-spec.js -------------------------------------------------------------------------------- /test/spec/stability-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/stability-spec.js -------------------------------------------------------------------------------- /test/spec/stream-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/simple-oracledb/HEAD/test/spec/stream-spec.js --------------------------------------------------------------------------------