node-firebird 1.1.5 → 1.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/index.d.ts +5 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|

|
|
4
4
|
|
|
5
5
|
[![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][npm-url] [![Mozilla License][license-image]][license-url]
|
|
6
|
-
[](https://travis-ci.org/mariuz/node-firebird)
|
|
7
6
|
|
|
8
7
|
[](https://nodei.co/npm/node-firebird/)
|
|
9
8
|
|
|
@@ -69,6 +68,7 @@ options.pageSize = 4096; // default when creating database
|
|
|
69
68
|
options.pageSize = 4096; // default when creating database
|
|
70
69
|
options.retryConnectionInterval = 1000; // reconnect interval in case of connection drop
|
|
71
70
|
options.blobAsText = false; // set to true to get blob as text, only affects blob subtype 1
|
|
71
|
+
options.encoding = 'UTF-8'; // default encoding for connection is UTF-8
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
### Classic
|
package/lib/index.d.ts
CHANGED
|
@@ -63,6 +63,7 @@ declare module 'node-firebird' {
|
|
|
63
63
|
'DOS869' |
|
|
64
64
|
'GB18030' |
|
|
65
65
|
'GBK' |
|
|
66
|
+
'ISO8859_1' |
|
|
66
67
|
'ISO8859_2' |
|
|
67
68
|
'ISO8859_3' |
|
|
68
69
|
'ISO8859_4' |
|
|
@@ -76,6 +77,10 @@ declare module 'node-firebird' {
|
|
|
76
77
|
'KOI8U' |
|
|
77
78
|
'TIS620' |
|
|
78
79
|
'UTF8' |
|
|
80
|
+
'WIN1251' |
|
|
81
|
+
'WIN1252' |
|
|
82
|
+
'WIN1253' |
|
|
83
|
+
'WIN1254' |
|
|
79
84
|
'WIN1255' |
|
|
80
85
|
'WIN1256' |
|
|
81
86
|
'WIN1257' |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-firebird",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "Pure JavaScript and Asynchronous Firebird client for Node.js.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"firebird",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"long": "^4.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"coveralls": "^
|
|
40
|
+
"coveralls-next": "^4.2.0",
|
|
41
41
|
"mocha": "^10.2.0",
|
|
42
42
|
"nyc": "^15.0.1"
|
|
43
43
|
}
|