@bdkinc/knex-ibmi 0.1.0 → 0.1.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 +3 -3
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[](https://npmjs.org/package/@bdkinc/knex-ibmi)
|
|
2
2
|
|
|
3
|
-
**Disclaimer:
|
|
3
|
+
**Disclaimer: This library is in beta. Please submit an issue for any bugs encounter or any questions you have.**
|
|
4
4
|
|
|
5
5
|
## Description
|
|
6
6
|
|
|
@@ -38,10 +38,10 @@ This library is written in typescript and compiled to both commonjs and esm.
|
|
|
38
38
|
|
|
39
39
|
```javascript
|
|
40
40
|
const knex = require("knex");
|
|
41
|
-
const {
|
|
41
|
+
const { DB2Dialect } = require("@bdkinc/knex-ibmi");
|
|
42
42
|
|
|
43
43
|
const db = knex({
|
|
44
|
-
client:
|
|
44
|
+
client: DB2Dialect,
|
|
45
45
|
connection: {
|
|
46
46
|
host: "localhost",
|
|
47
47
|
database: "knextest",
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
package/src/index.ts
CHANGED