Comparing version 1.2.3 to 1.2.4
{ | ||
"name": "highsql", | ||
"version": "1.2.3", | ||
"version": "1.2.4", | ||
"description": "High level MySQL utility", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -32,3 +32,3 @@ /** | ||
try { | ||
const [rows] = await connection.query(sql, values); | ||
const [rows] = await this.pool.query(sql, values); | ||
return rows; | ||
@@ -35,0 +35,0 @@ } |
@@ -53,3 +53,3 @@ /** | ||
try { | ||
const [rows] = await connection.query(sql, values); | ||
const [rows] = await this.pool.query(sql, values); | ||
return rows as T; | ||
@@ -56,0 +56,0 @@ } catch (error) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15255