Socket
Socket
Sign inDemoInstall

jeefo-mysql

Package Overview
Dependencies
13
Maintainers
2
Versions
57
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.49 to 0.0.50

8

index.js

@@ -203,3 +203,3 @@ /* -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.

const query = `UPDATE ${tbl} SET ${set}${where}${order}${limit};`;
await this.exec(query, [...set.values, ...where.values]);
const res = await this.exec(query, [...set.values, ...where.values]);

@@ -213,2 +213,4 @@ if (return_back) {

}
return res;
}

@@ -220,3 +222,3 @@

async delete(where, options = {}) {
delete(where, options = {}) {
where = this.prepare_where(where);

@@ -229,3 +231,3 @@

const query = `DELETE FROM ${tbl}${where}${order}${limit};`;
await this.exec(query, where.values);
return this.exec(query, where.values);
}

@@ -232,0 +234,0 @@

{
"name": "jeefo-mysql",
"version": "0.0.49",
"version": "0.0.50",
"description": "Very simple MySQL connection instances for each table. I had annoyed enough for MySQL Deadlocks.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc