Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ee-mysql-connection

Package Overview
Dependencies
Maintainers
2
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ee-mysql-connection - npm Package Compare versions

Comparing version 0.1.10 to 0.1.11

7

lib/MySQLConnection.js

@@ -39,2 +39,3 @@ !function(){

, escape: this._escape.bind(this)
, type: 'mysql'
});

@@ -138,5 +139,5 @@ }

if (debug){
log('query took «'+(Date.now()-start)+'» msec ...');
if (results && results.length !== undefined) log('query returned «'+(results ? (results.length || 0) : 0 )+'» rows ...');
if (results && results.affectedRows !== undefined) log('query affected «'+(results ? (results.affectedRows || 0) : 0 )+'» rows ...');
log.debug('query took «'+(Date.now()-start)+'» msec ...');
if (results && results.length !== undefined) log.debug('query returned «'+(results ? (results.length || 0) : 0 )+'» rows ...');
if (results && results.affectedRows !== undefined) log.debug('query affected «'+(results ? (results.affectedRows || 0) : 0 )+'» rows ...');
log(err);

@@ -143,0 +144,0 @@ }

{
"name" : "ee-mysql-connection"
, "description" : "mysql connection abstraction for ee-orm"
, "version" : "0.1.10"
, "version" : "0.1.11"
, "homepage" : "https://github.com/eventEmitter/ee-mysql-connection"

@@ -20,3 +20,3 @@ , "author" : "Michael van der Weg <michael@eventemitter.com> (http://eventemitter.com/)"

, "dependencies": {
"ee-class" : "0.3.x"
"ee-class" : "0.4.x"
, "ee-event-emitter" : "0.1.x"

@@ -23,0 +23,0 @@ , "ee-types" : "0.1.x"

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