Socket
Socket
Sign inDemoInstall

simple-oracledb

Package Overview
Dependencies
Maintainers
1
Versions
239
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-oracledb - npm Package Compare versions

Comparing version 0.0.35 to 0.0.36

2

docs/api.md

@@ -109,3 +109,3 @@ ## Classes

//read all rows in bulks (streaming results)
connection.query('SELECT * FROM departments', {
connection.query('SELECT * FROM departments WHERE manager_id > :id', [110], {
streamResults: true,

@@ -112,0 +112,0 @@ bulkRowsAmount: 100 //The amount of rows to fetch (for streaming, thats the max rows that the callback will get for each streaming invocation)

@@ -73,3 +73,3 @@ 'use strict';

* //read all rows in bulks (streaming results)
* connection.query('SELECT * FROM departments', {
* connection.query('SELECT * FROM departments WHERE manager_id > :id', [110], {
* streamResults: true,

@@ -76,0 +76,0 @@ * bulkRowsAmount: 100 //The amount of rows to fetch (for streaming, thats the max rows that the callback will get for each streaming invocation)

{
"name": "simple-oracledb",
"version": "0.0.35",
"version": "0.0.36",
"description": "Extend capabilities of oracledb with simplified API for quicker development.",

@@ -5,0 +5,0 @@ "author": {

@@ -188,3 +188,3 @@ # simple-oracledb

```js
connection.query('SELECT * FROM departments', {
connection.query('SELECT * FROM departments WHERE manager_id > :id', [110], {
streamResults: true,

@@ -373,2 +373,3 @@ bulkRowsAmount: 100 //The amount of rows to fetch (for streaming, thats the max rows that the callback will get for each streaming invocation)

| ----------- | ------- | ----------- |
| 2015-12-21 | v0.0.36 | Maintenance |
| 2015-12-21 | v0.0.35 | New bulkRowsAmount option to manage query resultset behaviour |

@@ -375,0 +376,0 @@ | 2015-12-21 | v0.0.34 | Added streaming of query results with new option streamResults=true |

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc