Socket
Socket
Sign inDemoInstall

node-firebird

Package Overview
Dependencies
2
Maintainers
3
Versions
68
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.3 to 1.1.4

4

lib/index.d.ts

@@ -22,3 +22,3 @@ // Type definitions for node-firebird

/** A transaction sees only data committed before the statement has been executed. */
export const ISOLATION_READ_COMMITED: number[];
export const ISOLATION_READ_COMMITTED: number[];
/** A transaction sees during its lifetime only data committed before the transaction has been started. */

@@ -31,3 +31,3 @@ export const ISOLATION_REPEATABLE_READ: number[];

export const ISOLATION_SERIALIZABLE: number[];
export const ISOLATION_READ_COMMITED_READ_ONLY: number[];
export const ISOLATION_READ_COMMITTED_READ_ONLY: number[];

@@ -34,0 +34,0 @@ export type Isolation = number[];

{
"name": "node-firebird",
"version": "1.1.3",
"version": "1.1.4",
"description": "Pure JavaScript and Asynchronous Firebird client for Node.js.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -233,3 +233,3 @@ # Pure JavaScript and Asynchronous Firebird client for Node.js

db.transaction(Firebird.ISOLATION_READ_COMMITED, (err, transaction) => {
db.transaction(Firebird.ISOLATION_READ_COMMITTED, (err, transaction) => {
if (err) {

@@ -322,6 +322,6 @@ throw err;

- `Firebird.ISOLATION_READ_UNCOMMITTED`
- `Firebird.ISOLATION_READ_COMMITED`
- `Firebird.ISOLATION_READ_COMMITTED`
- `Firebird.ISOLATION_REPEATABLE_READ`
- `Firebird.ISOLATION_SERIALIZABLE`
- `Firebird.ISOLATION_READ_COMMITED_READ_ONLY`
- `Firebird.ISOLATION_READ_COMMITTED_READ_ONLY`

@@ -335,3 +335,3 @@ ```js

// db = DATABASE
db.transaction(Firebird.ISOLATION_READ_COMMITED, function(err, transaction) {
db.transaction(Firebird.ISOLATION_READ_COMMITTED, function(err, transaction) {
transaction.query('INSERT INTO users VALUE(?,?)', [1, 'Janko'], function(err, result) {

@@ -338,0 +338,0 @@

Sorry, the diff of this file is too big to display

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