mg-dbx 2.4.27-c → 2.4.27-d
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 +10 -6
- package/bin/winx64/node20/mg-dbx.node +0 -0
- package/package.json +1 -1
- package/src/mg-class.cpp +1 -1
- package/src/mg-class.h +1 -1
- package/src/mg-cursor.cpp +1 -1
- package/src/mg-cursor.h +1 -1
- package/src/mg-dbx.cpp +1 -1
- package/src/mg-dbx.h +1 -1
- package/src/mg-global.cpp +1 -1
- package/src/mg-global.h +1 -1
- package/src/mg-net.cpp +1 -1
- package/src/mg-net.h +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
High speed Synchronous and Asynchronous access to InterSystems Cache/IRIS and YottaDB from Node.js.
|
|
4
4
|
|
|
5
5
|
Chris Munt <cmunt@mgateway.com>
|
|
6
|
-
|
|
6
|
+
22 June 2023, MGateway Ltd [http://www.mgateway.com](http://www.mgateway.com)
|
|
7
7
|
|
|
8
8
|
* Verified to work with Node.js v8 to v20.
|
|
9
9
|
* Two connectivity models to the InterSystems or YottaDB database are provided: High performance via the local database API or network based.
|
|
@@ -87,8 +87,8 @@ Change to your development UCI and check the installation:
|
|
|
87
87
|
|
|
88
88
|
do ^%zmgsi
|
|
89
89
|
|
|
90
|
-
|
|
91
|
-
Version: 4.
|
|
90
|
+
MGateway Ltd - Service Integration Gateway
|
|
91
|
+
Version: 4.5; Revision 28 (3 February 2023)
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
#### Installation for YottaDB
|
|
@@ -116,8 +116,8 @@ Link all the **zmgsi** routines and check the installation:
|
|
|
116
116
|
|
|
117
117
|
do ^%zmgsi
|
|
118
118
|
|
|
119
|
-
|
|
120
|
-
Version: 4.
|
|
119
|
+
MGateway Ltd - Service Integration Gateway
|
|
120
|
+
Version: 4.5; Revision 28 (3 February 2023)
|
|
121
121
|
|
|
122
122
|
Note that the version of **zmgsi** is successfully displayed.
|
|
123
123
|
|
|
@@ -1026,7 +1026,7 @@ Logging can be switched off by calling the **setloglevel** function without spec
|
|
|
1026
1026
|
|
|
1027
1027
|
## <a name="License"></a> License
|
|
1028
1028
|
|
|
1029
|
-
Copyright (c) 2018-2023
|
|
1029
|
+
Copyright (c) 2018-2023 MGateway Ltd,
|
|
1030
1030
|
Surrey UK.
|
|
1031
1031
|
All rights reserved.
|
|
1032
1032
|
|
|
@@ -1219,3 +1219,7 @@ Unless required by applicable law or agreed to in writing, software distributed
|
|
|
1219
1219
|
### v2.4.27c (3 May 2023)
|
|
1220
1220
|
|
|
1221
1221
|
* Verify that **mg-dbx** will build and work with Node.js v20.x.x.
|
|
1222
|
+
|
|
1223
|
+
### v2.4.27d (22 June 2023)
|
|
1224
|
+
|
|
1225
|
+
* Documentation update.
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"author": "Chris Munt <cmunt@mgateway.com> (http://www.gateway.com/)",
|
|
3
3
|
"name": "mg-dbx",
|
|
4
4
|
"description": "High speed Synchronous and Asynchronous access to InterSystems Cache/IRIS and YottaDB from Node.js.",
|
|
5
|
-
"version": "2.4.
|
|
5
|
+
"version": "2.4.27d",
|
|
6
6
|
"maintainers": "Chris Munt <cmunt@mgateway.com>",
|
|
7
7
|
"homepage": "https://github.com/chrisemunt/mg-dbx",
|
|
8
8
|
"repository": {
|
package/src/mg-class.cpp
CHANGED
package/src/mg-class.h
CHANGED
package/src/mg-cursor.cpp
CHANGED
package/src/mg-cursor.h
CHANGED
package/src/mg-dbx.cpp
CHANGED
package/src/mg-dbx.h
CHANGED
package/src/mg-global.cpp
CHANGED
package/src/mg-global.h
CHANGED
package/src/mg-net.cpp
CHANGED
package/src/mg-net.h
CHANGED