@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.
Files changed (2) hide show
  1. package/README.md +11 -11
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,13 @@
1
1
  [![npm version](http://img.shields.io/npm/v/@bdkinc/knex-ibmi.svg)](https://npmjs.org/package/@bdkinc/knex-ibmi)
2
2
 
3
- **Disclaimer: This library is in beta. Please submit an issue for any bugs encounter or any questions you have.**
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://github.com/tgriesser/knex). This library uses the ODBC driver and is only tested on IBMi. Here are the IBM OSS Docs https://ibmi-oss-docs.readthedocs.io/en/latest/odbc/README.html
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
- `npm install @bdkinc/knex-ibmi`
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 [IBM ODBC Docs for dependencies](https://ibmi-oss-docs.readthedocs.io/en/latest/odbc/README.html) if you run into any issues
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bdkinc/knex-ibmi",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Knex dialect for IBMi",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",