Socket
Socket
Sign inDemoInstall

oracle

Package Overview
Dependencies
0
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.6 to 0.3.7

2

package.json

@@ -7,3 +7,3 @@ {

"license": "MIT",
"version": "0.3.6",
"version": "0.3.7",
"engines": {

@@ -10,0 +10,0 @@ "node": ">=0.6.0"

@@ -197,3 +197,3 @@ # Oracle driver for Node.js

* `reader.nextRow(callback)`: returns the next row through the callback
* `reader.nextRows(count, callback)` returns the next `count` rows through the callback. `count` is optional and `nextRows` uses the prefetch row count when `count` is omitted.
* `reader.nextRows(count, callback)` returns the next `count` rows through the callback. `count` is optional and `nextRows` uses the prefetch row count when `count` is omitted. Also, you much check for `row.length` since the reader will continue returning empty arrays once it exceeds the end of the data set provided by the query.
* `connection.setPrefetchRowCount(count)`: configures the prefetch row count for the connection. Prefetching can have a dramatic impact on performance but uses more memory.

@@ -262,2 +262,3 @@

* Ensure you always close your connection at the end of use to avoid random false oracle errors.
* Currently no native support for connection pooling (forthcoming; use generic-pool for now.)

@@ -264,0 +265,0 @@ * Currently no support for column type "Timestamp With Timezone" (Issue #67)

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc