stimulsoft-data-adapter 2022.3.5 → 2022.4.2
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/FirebirdAdapter.js +3 -3
- package/MSSQLAdapter.js +3 -3
- package/MySQLAdapter.js +3 -3
- package/PostgreSQLAdapter.js +3 -3
- package/index.js +3 -3
- package/package.json +1 -1
package/FirebirdAdapter.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/*
|
|
2
2
|
Stimulsoft.Reports.JS
|
|
3
|
-
Version: 2022.
|
|
4
|
-
Build date: 2022.
|
|
3
|
+
Version: 2022.4.2
|
|
4
|
+
Build date: 2022.10.06
|
|
5
5
|
License: https://www.stimulsoft.com/en/licensing/reports
|
|
6
6
|
*/
|
|
7
7
|
exports.process = function (command, onResult) {
|
|
8
8
|
var end = function (result) {
|
|
9
9
|
try {
|
|
10
10
|
if (db) db.detach();
|
|
11
|
-
result.adapterVersion = "2022.
|
|
11
|
+
result.adapterVersion = "2022.4.2";
|
|
12
12
|
onResult(result);
|
|
13
13
|
}
|
|
14
14
|
catch (e) {
|
package/MSSQLAdapter.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/*
|
|
2
2
|
Stimulsoft.Reports.JS
|
|
3
|
-
Version: 2022.
|
|
4
|
-
Build date: 2022.
|
|
3
|
+
Version: 2022.4.2
|
|
4
|
+
Build date: 2022.10.06
|
|
5
5
|
License: https://www.stimulsoft.com/en/licensing/reports
|
|
6
6
|
*/
|
|
7
7
|
exports.process = function (command, onResult) {
|
|
8
8
|
var end = function (result) {
|
|
9
9
|
try {
|
|
10
10
|
if (connection) connection.close();
|
|
11
|
-
result.adapterVersion = "2022.
|
|
11
|
+
result.adapterVersion = "2022.4.2";
|
|
12
12
|
onResult(result);
|
|
13
13
|
}
|
|
14
14
|
catch (e) {
|
package/MySQLAdapter.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
Stimulsoft.Reports.JS
|
|
3
|
-
Version: 2022.
|
|
4
|
-
Build date: 2022.
|
|
3
|
+
Version: 2022.4.2
|
|
4
|
+
Build date: 2022.10.06
|
|
5
5
|
License: https://www.stimulsoft.com/en/licensing/reports
|
|
6
6
|
*/
|
|
7
7
|
exports.process = function (command, onResult) {
|
|
@@ -10,7 +10,7 @@ exports.process = function (command, onResult) {
|
|
|
10
10
|
if (connection) {
|
|
11
11
|
connection.end();
|
|
12
12
|
}
|
|
13
|
-
result.adapterVersion = "2022.
|
|
13
|
+
result.adapterVersion = "2022.4.2";
|
|
14
14
|
onResult(result);
|
|
15
15
|
}
|
|
16
16
|
catch (e) {
|
package/PostgreSQLAdapter.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/*
|
|
2
2
|
Stimulsoft.Reports.JS
|
|
3
|
-
Version: 2022.
|
|
4
|
-
Build date: 2022.
|
|
3
|
+
Version: 2022.4.2
|
|
4
|
+
Build date: 2022.10.06
|
|
5
5
|
License: https://www.stimulsoft.com/en/licensing/reports
|
|
6
6
|
*/
|
|
7
7
|
exports.process = function (command, onResult) {
|
|
8
8
|
var end = function (result) {
|
|
9
9
|
try {
|
|
10
10
|
if (client) client.end();
|
|
11
|
-
result.adapterVersion = "2022.
|
|
11
|
+
result.adapterVersion = "2022.4.2";
|
|
12
12
|
onResult(result);
|
|
13
13
|
}
|
|
14
14
|
catch (e) {
|
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
Stimulsoft.Reports.JS
|
|
3
|
-
Version: 2022.
|
|
4
|
-
Build date: 2022.
|
|
3
|
+
Version: 2022.4.2
|
|
4
|
+
Build date: 2022.10.06
|
|
5
5
|
License: https://www.stimulsoft.com/en/licensing/reports
|
|
6
6
|
*/
|
|
7
7
|
|
|
@@ -100,7 +100,7 @@ function getResponse(result) {
|
|
|
100
100
|
return result
|
|
101
101
|
}
|
|
102
102
|
function onProcess(onResult, encryptData, result) {
|
|
103
|
-
result.handlerVersion = "2022.
|
|
103
|
+
result.handlerVersion = "2022.4.2";
|
|
104
104
|
result.checkVersion = true;
|
|
105
105
|
result.encryptData = encryptData;
|
|
106
106
|
onResult(result);
|