New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

firebird

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firebird - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

binding.gyp

6

firebird.js

@@ -48,3 +48,3 @@ var binding = require("./build/Release/binding");

superConnect.call(this,db,user,pass,role,function (err){
if(err) obj.emit('error',err);
if(err && (!cb || obj.listeners('error').length)) obj.emit('error',err);
else obj.emit('connected');

@@ -55,2 +55,3 @@ if(cb) cb(err);

var superQuery = Connection.prototype.query;

@@ -60,3 +61,3 @@ Connection.prototype.query = function(sql,cb){

superQuery.call(this,sql,function(err,res){
if(err) obj.emit('error',err);
if(err && (!cb || obj.listeners('error').length)) obj.emit('error',err);
else obj.emit('result',res);

@@ -67,2 +68,3 @@ if(cb) cb(err,res);

binding.FBblob.prototype._readAll = function(initialSize, chunkSize, callback){

@@ -69,0 +71,0 @@ if(initialSize instanceof Function)

{ "name" : "firebird"
, "version" : "v0.0.9"
, "version" : "v0.0.10"
, "description" : "Firebird binding to node, uses libfbclient."
, "author": "Denys Khanzhiyev"
, "main": "./firebird"
, "scripts": { "install": "node-waf configure build" }
, "maintainers" :

@@ -8,0 +7,0 @@ [ { "name": "Denys Khanzhiyev"

@@ -25,14 +25,10 @@ C++ NodeJS module to work with Firebird SQL Server. Uses libfbclient.

##Under Linux
##Under Linux and Windows
You will need:
NodeJS (tested with v0.6.13)
NodeJS (tested with v0.10.25)
Firebird (tested with v2.5)
All things below were tested on CentOS 5.5.
Get Firebird:
wget http://downloads.sourceforge.net/project/firebird/firebird-linux-i386/2.5-Release/FirebirdCS-2.5.0.26074-0.i686.rpm
rpm -ivh FirebirdCS-2.5.0.26074-0.i686.rpm
Get Firebird.
Update your path:

@@ -52,4 +48,3 @@ export PATH=$PATH:/opt/firebird/bin

git clone git://github.com/xdenser/node-firebird-libfbclient.git
node-waf configure build
node-waf configure install
npm install

@@ -62,4 +57,4 @@ or use npm:

git submodule update --init
node-waf test
npm install nodeunit
./node_modules/.bin/nodeunit tests/def

@@ -81,14 +76,2 @@ Play with it from node:

##Under Windows
You need Firebird client library installed.
- [Experimental build for Windows link1](https://github.com/downloads/xdenser/node-firebird-libfbclient/node-firebird-win.zip)
- [Experimental build for Windows link2](http://www.xdenser.com/downloads/node-firebird-win.zip)
Unzip, modify config.js for your DB. Run:
node.exe test.js
# Links

@@ -95,0 +78,0 @@

@@ -0,0 +0,0 @@ var Deferred = require('../../tools/node-deferred/lib/deferred.js').Deferred,

@@ -0,0 +0,0 @@ var fb = require('./fb-deferred.js');

@@ -0,0 +0,0 @@ var connect = require('connect');

@@ -0,0 +0,0 @@ var fb=require('../../firebird');

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

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 too big to display

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

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

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

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

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

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

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc