node-firebird
Advanced tools
Comparing version 0.2.5 to 0.2.6
@@ -211,3 +211,3 @@ | ||
this.ensure(8); | ||
var l = new Long(value); | ||
var l = Long.fromNumber(value); | ||
this.buffer.writeInt32BE(l.high_, this.pos); | ||
@@ -299,3 +299,3 @@ this.pos += 4; | ||
this.pos += 4; | ||
return new Long(low, high); | ||
return new Long(low, high).toNumber(); | ||
}; | ||
@@ -302,0 +302,0 @@ |
{ | ||
"name": "node-firebird", | ||
"version": "0.2.5", | ||
"version": "0.2.6", | ||
"description": "Pure JavaScript and Asynchronous Firebird client for Node.js.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -352,2 +352,10 @@ ![Firebird Logo](https://www.totaljs.com/exports/firebird-logo.png) | ||
### Firebird 3.0 Support | ||
Firebird new wire protocol is not supported yet so | ||
for Firebird 3.0 you need to add the following in firebird.conf | ||
``` | ||
AuthServer = Legacy_Auth | ||
WireCrypt = Disabled | ||
``` | ||
## Contributors | ||
@@ -354,0 +362,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
372
3
287637
9
3359