Socket
Socket
Sign inDemoInstall

node-querybuilder

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-querybuilder - npm Package Compare versions

Comparing version 0.10.0 to 0.11.0

8

drivers/mysql/query_exec.js

@@ -94,4 +94,8 @@ // ****************************************************************************

insert_ignore: function(table,set,callback) {
var sql = qb.insert_ignore(table,set);
insert_ignore: function(table,set,on_dupe,callback) {
if (typeof on_dupe === 'function') {
callback = on_dupe;
on_dupe = null;
}
var sql = qb.insert_ignore(table,set,on_dupe);
qb.reset_query(sql);

@@ -98,0 +102,0 @@ exec(sql,callback);

{
"name": "node-querybuilder",
"version": "0.10.0",
"version": "0.11.0",
"author": "Kyle Farris <kyle@chomponllc.com>",

@@ -5,0 +5,0 @@ "description": "Modeled after Codeigniter's QueryBuilder. Build and execute queries in a safe and database-agnostic way.",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc