├── .eslintrc ├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── index.js ├── package.json ├── test ├── close.js ├── error-handling.js ├── index.js ├── mocha.opts ├── no-data-handling.js ├── pool.js ├── query-config.js └── transactions.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/package.json -------------------------------------------------------------------------------- /test/close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/test/close.js -------------------------------------------------------------------------------- /test/error-handling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/test/error-handling.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --no-exit 3 | --bail 4 | -------------------------------------------------------------------------------- /test/no-data-handling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/test/no-data-handling.js -------------------------------------------------------------------------------- /test/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/test/pool.js -------------------------------------------------------------------------------- /test/query-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/test/query-config.js -------------------------------------------------------------------------------- /test/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/test/transactions.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianc/node-pg-cursor/HEAD/yarn.lock --------------------------------------------------------------------------------