simple-oracledb
Advanced tools
Comparing version 1.1.38 to 1.1.39
| Date | Version | Description | | ||
| ----------- | ------- | ----------- | | ||
| 2016-10-19 | v1.1.38 | Maintenance | | ||
| 2016-10-20 | v1.1.39 | Maintenance | | ||
| 2016-10-07 | v1.1.26 | Added oracledb.run | | ||
@@ -5,0 +5,0 @@ | 2016-10-06 | v1.1.25 | Maintenance | |
@@ -19,23 +19,23 @@ 'use strict'; | ||
tags: { | ||
'usage-oracledb-run': 'OracleDB+run', | ||
'usage-getconnection': 'Pool+getConnection', | ||
'usage-pool-run': 'Pool+run', | ||
'usage-terminate': { | ||
'OracleDB+run': 'OracleDB+run', | ||
'Pool+getConnection': 'Pool+getConnection', | ||
'Pool+run': 'Pool+run', | ||
'Pool+terminate': { | ||
tag: 'Pool+terminate', | ||
skipSignature: true | ||
}, | ||
'usage-query': 'Connection+query', | ||
'usage-insert': 'Connection+insert', | ||
'usage-update': 'Connection+update', | ||
'usage-queryJSON': 'Connection+queryJSON', | ||
'usage-batchInsert': 'Connection+batchInsert', | ||
'usage-batchUpdate': 'Connection+batchUpdate', | ||
'usage-transaction': 'Connection+transaction', | ||
'usage-connection-run': 'Connection+run', | ||
'usage-release': { | ||
'Connection+query': 'Connection+query', | ||
'Connection+insert': 'Connection+insert', | ||
'Connection+update': 'Connection+update', | ||
'Connection+queryJSON': 'Connection+queryJSON', | ||
'Connection+batchInsert': 'Connection+batchInsert', | ||
'Connection+batchUpdate': 'Connection+batchUpdate', | ||
'Connection+transaction': 'Connection+transaction', | ||
'Connection+run': 'Connection+run', | ||
'Connection+release': { | ||
tag: 'Connection+release', | ||
skipSignature: true | ||
}, | ||
'usage-rollback': 'Connection+rollback', | ||
'usage-extensions': 'SimpleOracleDB+addExtension' | ||
'Connection+rollback': 'Connection+rollback', | ||
'SimpleOracleDB+addExtension': 'SimpleOracleDB+addExtension' | ||
}, | ||
@@ -42,0 +42,0 @@ modifySignature: function (line) { |
{ | ||
"name": "simple-oracledb", | ||
"version": "1.1.38", | ||
"version": "1.1.39", | ||
"description": "Extend capabilities of oracledb with simplified API for quicker development.", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -16,25 +16,25 @@ # {"gitdown": "gitinfo", "name": "name"} | ||
* [Event: connection-released](#event-connection-released-oracledb) | ||
* [createPool](#usage-createpool) | ||
* [run](#usage-oracledb-run) | ||
* [createPool](#OracleDB-createpool) | ||
* [run](#OracleDB+run) | ||
* [Pool](#usage-pool) | ||
* [Event: connection-created](#event-connection-created) | ||
* [Event: connection-released](#event-connection-released) | ||
* [Event: release](#event-pool-release) | ||
* [getConnection](#usage-getconnection) | ||
* [run](#usage-pool-run) | ||
* [terminate](#usage-terminate) | ||
* [close](#usage-terminate) | ||
* [Event: connection-created](#Pool+Event+connection-created) | ||
* [Event: connection-released](#Pool+Event+connection-released) | ||
* [Event: release](#Pool+Event+Pool-released) | ||
* [getConnection](#Pool+getConnection) | ||
* [run](#Pool+run) | ||
* [terminate](#Pool+terminate) | ||
* [close](#Pool+terminate) | ||
* [Connection](#usage-connection) | ||
* [Event: release](#event-connection-release) | ||
* [query](#usage-query) | ||
* [insert](#usage-insert) | ||
* [update](#usage-update) | ||
* [queryJSON](#usage-queryJSON) | ||
* [batchInsert](#usage-batchInsert) | ||
* [batchUpdate](#usage-batchUpdate) | ||
* [transaction](#usage-transaction) | ||
* [run](#usage-connection-run) | ||
* [release](#usage-release) | ||
* [close](#usage-release) | ||
* [rollback](#usage-rollback) | ||
* [query](#Connection+query) | ||
* [insert](#Connection+insert) | ||
* [update](#Connection+update) | ||
* [queryJSON](#Connection+queryJSON) | ||
* [batchInsert](#Connection+batchInsert) | ||
* [batchUpdate](#Connection+batchUpdate) | ||
* [transaction](#Connection+transaction) | ||
* [run](#Connection+run) | ||
* [release](#Connection+release) | ||
* [close](#Connection+release) | ||
* [rollback](#Connection+rollback) | ||
* [SimpleOracleDB](#usage-simple-oracledb) | ||
@@ -47,3 +47,3 @@ * [Event: pool-created](#event-pool-created-simpleoracledb) | ||
* [enableDiagnosticInfo](#usage-enable-diagnostic-info) | ||
* [Extensions](#usage-extensions) | ||
* [Extensions](#SimpleOracleDB+addExtension) | ||
* [connection.upsert](#usage-extension-connection.upsert) | ||
@@ -161,3 +161,3 @@ * [Debug](#debug) | ||
<a name="usage-createpool"></a> | ||
<a name="OracleDB-createpool"></a> | ||
### 'oracledb.createPool(poolAttributes, [callback]) ⇒ [Promise]' | ||
@@ -180,3 +180,3 @@ This function modifies the existing oracledb.createPool function by enhancing the returned pool to support retry in the getConnection function.<br> | ||
<a name="usage-oracledb-run"></a> | ||
<a name="OracleDB+run"></a> | ||
@@ -186,3 +186,3 @@ <a name="usage-pool"></a> | ||
<a name="event-connection-created"></a> | ||
<a name="Pool+Event+connection-created"></a> | ||
### Event: 'connection-created' | ||
@@ -194,3 +194,3 @@ | ||
<a name="event-connection-released"></a> | ||
<a name="Pool+Event+connection-released"></a> | ||
### Event: 'connection-released' | ||
@@ -202,3 +202,3 @@ | ||
<a name="event-pool-release"></a> | ||
<a name="Pool+Event+Pool-released"></a> | ||
### Event: 'release' | ||
@@ -210,7 +210,7 @@ | ||
<a name="usage-getconnection"></a> | ||
<a name="Pool+getConnection"></a> | ||
<a name="usage-pool-run"></a> | ||
<a name="Pool+run"></a> | ||
<a name="usage-terminate"></a> | ||
<a name="Pool+terminate"></a> | ||
### 'pool.terminate([callback]) ⇒ [Promise]' | ||
@@ -226,23 +226,23 @@ ### 'pool.close([callback]) ⇒ [Promise]' | ||
<a name="usage-query"></a> | ||
<a name="Connection+query"></a> | ||
<a name="usage-insert"></a> | ||
<a name="Connection+insert"></a> | ||
<a name="usage-update"></a> | ||
<a name="Connection+update"></a> | ||
<a name="usage-queryJSON"></a> | ||
<a name="Connection+queryJSON"></a> | ||
<a name="usage-batchInsert"></a> | ||
<a name="Connection+batchInsert"></a> | ||
<a name="usage-batchUpdate"></a> | ||
<a name="Connection+batchUpdate"></a> | ||
<a name="usage-transaction"></a> | ||
<a name="Connection+transaction"></a> | ||
<a name="usage-connection-run"></a> | ||
<a name="Connection+run"></a> | ||
<a name="usage-release"></a> | ||
<a name="Connection+release"></a> | ||
### 'connection.release([options], [callback]) ⇒ [Promise]' | ||
### 'connection.close([options], [callback]) ⇒ [Promise]' | ||
<a name="usage-rollback"></a> | ||
<a name="Connection+rollback"></a> | ||
@@ -290,3 +290,3 @@ <a name="usage-simple-oracledb"></a> | ||
<a name="usage-extensions"></a> | ||
<a name="SimpleOracleDB+addExtension"></a> | ||
@@ -293,0 +293,0 @@ An example of an existing extension can be found at: [oracledb-upsert](https://github.com/{"gitdown": "gitinfo", "name": "username"}/oracledb-upsert) which adds the connection.upsert (insert/update) functionality. |
@@ -16,25 +16,25 @@ # simple-oracledb | ||
* [Event: connection-released](#event-connection-released-oracledb) | ||
* [createPool](#usage-createpool) | ||
* [run](#usage-oracledb-run) | ||
* [createPool](#OracleDB-createpool) | ||
* [run](#OracleDB+run) | ||
* [Pool](#usage-pool) | ||
* [Event: connection-created](#event-connection-created) | ||
* [Event: connection-released](#event-connection-released) | ||
* [Event: release](#event-pool-release) | ||
* [getConnection](#usage-getconnection) | ||
* [run](#usage-pool-run) | ||
* [terminate](#usage-terminate) | ||
* [close](#usage-terminate) | ||
* [Event: connection-created](#Pool+Event+connection-created) | ||
* [Event: connection-released](#Pool+Event+connection-released) | ||
* [Event: release](#Pool+Event+Pool-released) | ||
* [getConnection](#Pool+getConnection) | ||
* [run](#Pool+run) | ||
* [terminate](#Pool+terminate) | ||
* [close](#Pool+terminate) | ||
* [Connection](#usage-connection) | ||
* [Event: release](#event-connection-release) | ||
* [query](#usage-query) | ||
* [insert](#usage-insert) | ||
* [update](#usage-update) | ||
* [queryJSON](#usage-queryJSON) | ||
* [batchInsert](#usage-batchInsert) | ||
* [batchUpdate](#usage-batchUpdate) | ||
* [transaction](#usage-transaction) | ||
* [run](#usage-connection-run) | ||
* [release](#usage-release) | ||
* [close](#usage-release) | ||
* [rollback](#usage-rollback) | ||
* [query](#Connection+query) | ||
* [insert](#Connection+insert) | ||
* [update](#Connection+update) | ||
* [queryJSON](#Connection+queryJSON) | ||
* [batchInsert](#Connection+batchInsert) | ||
* [batchUpdate](#Connection+batchUpdate) | ||
* [transaction](#Connection+transaction) | ||
* [run](#Connection+run) | ||
* [release](#Connection+release) | ||
* [close](#Connection+release) | ||
* [rollback](#Connection+rollback) | ||
* [SimpleOracleDB](#usage-simple-oracledb) | ||
@@ -47,3 +47,3 @@ * [Event: pool-created](#event-pool-created-simpleoracledb) | ||
* [enableDiagnosticInfo](#usage-enable-diagnostic-info) | ||
* [Extensions](#usage-extensions) | ||
* [Extensions](#SimpleOracleDB+addExtension) | ||
* [connection.upsert](#usage-extension-connection.upsert) | ||
@@ -161,3 +161,3 @@ * [Debug](#debug) | ||
<a name="usage-createpool"></a> | ||
<a name="OracleDB-createpool"></a> | ||
### 'oracledb.createPool(poolAttributes, [callback]) ⇒ [Promise]' | ||
@@ -180,3 +180,3 @@ This function modifies the existing oracledb.createPool function by enhancing the returned pool to support retry in the getConnection function.<br> | ||
<a name="usage-oracledb-run"></a> | ||
<a name="OracleDB+run"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -230,3 +230,3 @@ ### 'oracledb.run(connectionAttributes, action, [callback]) ⇒ [Promise]' | ||
<a name="event-connection-created"></a> | ||
<a name="Pool+Event+connection-created"></a> | ||
### Event: 'connection-created' | ||
@@ -238,3 +238,3 @@ | ||
<a name="event-connection-released"></a> | ||
<a name="Pool+Event+connection-released"></a> | ||
### Event: 'connection-released' | ||
@@ -246,3 +246,3 @@ | ||
<a name="event-pool-release"></a> | ||
<a name="Pool+Event+Pool-released"></a> | ||
### Event: 'release' | ||
@@ -254,3 +254,3 @@ | ||
<a name="usage-getconnection"></a> | ||
<a name="Pool+getConnection"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -280,3 +280,3 @@ ### 'pool.getConnection([callback]) ⇒ [Promise]' | ||
<a name="usage-pool-run"></a> | ||
<a name="Pool+run"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -319,3 +319,3 @@ ### 'pool.run(action, [options], [callback]) ⇒ [Promise]' | ||
<a name="usage-terminate"></a> | ||
<a name="Pool+terminate"></a> | ||
### 'pool.terminate([callback]) ⇒ [Promise]' | ||
@@ -354,3 +354,3 @@ ### 'pool.close([callback]) ⇒ [Promise]' | ||
<a name="usage-query"></a> | ||
<a name="Connection+query"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -417,3 +417,3 @@ ### 'connection.query(sql, [bindParams], [options], [callback]) ⇒ [ResultSetReadStream] | [Promise]' | ||
<a name="usage-insert"></a> | ||
<a name="Connection+insert"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -466,3 +466,3 @@ ### 'connection.insert(sql, [bindParams], [options], [callback]) ⇒ [Promise]' | ||
<a name="usage-update"></a> | ||
<a name="Connection+update"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -494,3 +494,3 @@ ### 'connection.update(sql, [bindParams], [options], [callback]) ⇒ [Promise]' | ||
<a name="usage-queryJSON"></a> | ||
<a name="Connection+queryJSON"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -523,3 +523,3 @@ ### 'connection.queryJSON(sql, [bindParams], [options], [callback]) ⇒ [Promise]' | ||
<a name="usage-batchInsert"></a> | ||
<a name="Connection+batchInsert"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -559,3 +559,3 @@ ### 'connection.batchInsert(sql, bindParamsArray, options, [callback]) ⇒ [Promise]' | ||
<a name="usage-batchUpdate"></a> | ||
<a name="Connection+batchUpdate"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -595,3 +595,3 @@ ### 'connection.batchUpdate(sql, bindParamsArray, options, [callback]) ⇒ [Promise]' | ||
<a name="usage-transaction"></a> | ||
<a name="Connection+transaction"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -650,3 +650,3 @@ ### 'connection.transaction(actions, [options], [callback]) ⇒ [Promise]' | ||
<a name="usage-connection-run"></a> | ||
<a name="Connection+run"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -740,3 +740,3 @@ ### 'connection.run(actions, [options], [callback]) ⇒ [Promise]' | ||
<a name="usage-release"></a> | ||
<a name="Connection+release"></a> | ||
### 'connection.release([options], [callback]) ⇒ [Promise]' | ||
@@ -789,3 +789,3 @@ ### 'connection.close([options], [callback]) ⇒ [Promise]' | ||
<a name="usage-rollback"></a> | ||
<a name="Connection+rollback"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -852,3 +852,3 @@ ### 'connection.rollback([callback]) ⇒ [Promise]' | ||
<a name="usage-extensions"></a> | ||
<a name="SimpleOracleDB+addExtension"></a> | ||
<!-- markdownlint-disable MD009 MD031 MD036 --> | ||
@@ -937,3 +937,3 @@ ### 'SimpleOracleDB.addExtension(type, name, extension, [options]) ⇒ boolean' | ||
| ----------- | ------- | ----------- | | ||
| 2016-10-19 | v1.1.38 | Maintenance | | ||
| 2016-10-20 | v1.1.39 | Maintenance | | ||
| 2016-10-07 | v1.1.26 | Added oracledb.run | | ||
@@ -940,0 +940,0 @@ | 2016-10-06 | v1.1.25 | Maintenance | |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
769155