xardao 1.6.1 → 1.6.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.
@@ -15,6 +15,7 @@ import { ESNext } from './esnext.js'
15
15
 
16
16
  export class Connection {
17
17
  constructor(connUrlInfo) {
18
+ this.driverName = "mariadb"
18
19
  this.debugMode = false;
19
20
  this.lastInsertId = null;
20
21
  this.lastStatementChanges = null;
@@ -14,6 +14,7 @@ import { ESNext } from './esnext.js'
14
14
 
15
15
  export class Connection {
16
16
  constructor(connUrlInfo) {
17
+ this.driverName = "mssql"
17
18
  this.debugMode = false
18
19
  this.lastInsertId = null
19
20
  this.lastStatementChanges = null
@@ -15,6 +15,7 @@ import { ESNext } from './esnext.js'
15
15
 
16
16
  export class Connection {
17
17
  constructor(connUrlInfo) {
18
+ this.driverName = "pg"
18
19
  this.debugMode = false;
19
20
  this.lastInsertId = null;
20
21
  this.lastStatementChanges = null;
@@ -14,6 +14,7 @@ import { ESNext } from './esnext.js'
14
14
 
15
15
  export class Connection {
16
16
  constructor(connUrlInfo) {
17
+ this.driverName = "snowflake"
17
18
  this.debugMode = false;
18
19
  this.lastInsertId = null;
19
20
  this.lastStatementChanges = null;
@@ -17,6 +17,7 @@ const then = common.then;
17
17
 
18
18
  export class Connection {
19
19
  constructor(connUrlInfo) {
20
+ this.driverName = "sqlite3"
20
21
  this.debugMode = false;
21
22
  this.lastInsertId = null;
22
23
  this.lastStatementChanges = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xardao",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "type": "module",
5
5
  "description": "Common Relational Data Access library",
6
6
  "main": "./lib/xardao.js",
@@ -29,6 +29,7 @@
29
29
  "mssql",
30
30
  "postgresql",
31
31
  "snowflake",
32
+ "snowflake",
32
33
  "pg"
33
34
  ]
34
35
  }