Socket
Socket
Sign inDemoInstall

node-firebird

Package Overview
Dependencies
0
Maintainers
2
Versions
68
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.1 to 0.1.2

LICENSE

0

lib/long.js

@@ -0,0 +0,0 @@ // Licensed under the Apache License, Version 2.0 (the "License");

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

5

package.json
{
"name": "node-firebird",
"version": "0.1.1",
"version": "0.1.2",
"description": "Firebird client - pure javascript",

@@ -19,3 +19,4 @@ "keywords": [

},
"main": "./lib"
"main": "./lib",
"licenses" : [ { "type" : "MPL-2.0" } ]
}
# node-firebird
Pure javascript and asynchronous Firebird client for Node.js.
Pure JavaScript and Asynchronous Firebird client for Node.js.
To get help, join [this] [2] google group.
If you are new to Firebird you will find useful documentation [here] [1].

@@ -50,2 +52,3 @@

### Using transaction

@@ -106,2 +109,10 @@

### Detaching
To quit the event loop you can do
database.detach();
### Errors handling

@@ -124,4 +135,13 @@

- The sqlcode value is extracted from status vector.
- The message string is built using firebrd.msg file.
- The message string is built using firebird.msg file.
### Charset for database connection is always UTF-8
node-firebird doesn't let you chose the charset connection, it will always use UTF8.
Node is unicode, no matter if your database is using another charset to store string or blob, Firebird will transliterate automatically.
This is why you should use Firebird 2.5 server at least.
[1]: http://www.firebirdsql.org/en/documentation/
[2]: https://groups.google.com/forum/#!forum/node-firebird

@@ -6,2 +6,3 @@ fb = require("../lib");

windb = 'C:\\dev\\bases\\test.fdb';
lindb = '/tmp/test.fdb';
db = windb;

@@ -208,2 +209,2 @@

}
);
);

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