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.1.11 to 0.1.12

2

lib/connection.js

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

properties.forEach(function addProperty(property) {
if (connection[property]) {
if (typeof connection[property] === 'function') {
connection['base' + property.charAt(0).toUpperCase() + property.slice(1)] = connection[property];

@@ -844,0 +844,0 @@ }

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

properties.forEach(function addProperty(property) {
if (pool[property]) {
if (typeof pool[property] === 'function') {
pool['base' + property.charAt(0).toUpperCase() + property.slice(1)] = pool[property];

@@ -142,0 +142,0 @@ }

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

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

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

| ----------- | ------- | ----------- |
| 2016-01-13 | v0.1.11 | Maintenance |
| 2016-01-15 | v0.1.12 | Maintenance |
| 2016-01-12 | v0.1.8 | Avoid issues with oracledb stream option which is based on this library |

@@ -462,0 +462,0 @@ | 2016-01-07 | v0.1.7 | connection.query with streamResults=true returns a readable stream |

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