Socket
Socket
Sign inDemoInstall

node-firebird

Package Overview
Dependencies
0
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-firebird

Firebird client - pure javascript


Version published
Weekly downloads
7.4K
increased by14.23%
Maintainers
1
Install size
108 kB
Created
Weekly downloads
 

Readme

Source

node-firebird

Pure javascript and asynchronous Firebird client for Node.js

Install

npm install node-firebird

Examples

Connecting

fb = require("node-firebird");
var database = new fb.Database('127.0.0.1', 3050, db, 'SYSDBA', 'masterkey', 
	function(){
		console.log("connected");
	}, 
	function(error){
		console.log("can't connect");
	}
);

Querying

Simple query
database.execute("select cast(? as integer) from rdb$database", [123],
	function (result) {
		console.log(result.data)
	}
);

The transaction automatically started and commited/rollbacked.

  • query is a non optional string.
  • params is optional, can be a single value or an array.
  • callback & error are optional.

Using transaction

var tr;

function fail(err) {
	tr.rollback();
	console.log(err.status);
}

database.startTransaction(function(transaction) {
	tr = transaction;
	tr.execute("select cast(? as integer) from rdb$database", 123, function(result1) {
		tr.execute("select cast(? as integer) from rdb$database", 456, function(result2) {
			tr.commit(function(ret) {
				console.log(result1.data[0]);
				console.log(result2.data[0]);
			}, fail)
		}, fail);
	}, fail);
})

Errors handling

Most async methods can trigger a callback and an error event, they are optionnals. If an error occur the error event will be called, if no error event is provided, the error will be sent to the callback event and you will have to check if the result is an error. An error object have a status property.

function CheckResult(obj) {
	if (obj.status) {
		throw new Error('oups')
	}
}

database.startTransaction(function(transaction) {
	transaction.execute("select cast(? as integer) from rdb$database", 123, function(result) {
		transaction.commit(function(ret) { // commit in all situations for a single query
			CheckResult(result);           // error executing query ?
			CheckResult(ret);              // error commiting ?
			console.log(result.data);
		})
	});
})

Keywords

FAQs

Last updated on 01 Jun 2012

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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