@bdkinc/knex-ibmi 0.2.1 → 0.2.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/README.md +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
[](https://npmjs.org/package/@bdkinc/knex-ibmi)
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Please submit an issue for any bug encounter or any questions you have.**
|
|
4
4
|
|
|
5
5
|
## Description
|
|
6
6
|
|
|
7
|
-
This is an external dialect for [knex](https://
|
|
7
|
+
This is an external dialect for [knex](https://knexjs.org).
|
|
8
|
+
This library uses the ODBC (as recommended here https://ibmi-oss-docs.readthedocs.io/en/latest/odbc/README.html)
|
|
9
|
+
driver and is only tested on IBMi.
|
|
10
|
+
For more information on IBMi OSS here are the [docs](https://ibmi-oss-docs.readthedocs.io/en/latest/README.html)
|
|
8
11
|
|
|
9
12
|
## Supported functionality
|
|
10
13
|
|
|
@@ -14,23 +17,20 @@ This is an external dialect for [knex](https://github.com/tgriesser/knex). This
|
|
|
14
17
|
|
|
15
18
|
## Limitations
|
|
16
19
|
|
|
17
|
-
Currently, this dialect has limited functionality compared to the Knex built-in dialects. Below are some of the limitations:
|
|
18
|
-
|
|
19
20
|
- No streaming support
|
|
20
|
-
- Possibly other missing functionality
|
|
21
|
-
- Journaling must be handled separately. After a migration is ran journaling can be configured on the newly created tables. I recommend using the schema utility in the i access client solutions software.
|
|
22
|
-
|
|
23
|
-
## Installing
|
|
24
21
|
|
|
25
|
-
|
|
22
|
+
## Installation
|
|
23
|
+
```
|
|
24
|
+
npm install --save odbc knex @bdkinc/knex-ibmi
|
|
25
|
+
```
|
|
26
26
|
|
|
27
27
|
Requires Node v16 or higher.
|
|
28
28
|
|
|
29
29
|
## Dependencies
|
|
30
30
|
|
|
31
|
-
`npm install odbc` see [
|
|
31
|
+
`npm install odbc` see [odbc](https://github.com/markdirish/node-odbc)
|
|
32
32
|
|
|
33
|
-
`npm install knex`
|
|
33
|
+
`npm install knex` see [knex](https://github.com/tgriesser/knex)
|
|
34
34
|
|
|
35
35
|
## Usage
|
|
36
36
|
|