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

easymysql

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easymysql - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

4

package.json
{
"name": "easymysql",
"version": "0.2.0",
"version": "0.2.1",
"author": "Aleafs Zhang (zhangxc83@gmail.com)",

@@ -10,3 +10,3 @@ "contributors": [],

"dependencies": {
"mysql-robin" : "=2.0.4",
"mysql-robin" : "=2.0.7",
"safequeue" : ">=0.0.2"

@@ -13,0 +13,0 @@ },

@@ -37,16 +37,2 @@ /* vim: set expandtab tabstop=2 shiftwidth=2 foldmethod=marker: */

});
it('select * from cdo_tcif.auth_user where username = :username should ok', function (done) {
var sql = 'select * from test.auth_user where username = :username';
var con = Connection.create(Common.config);
con.query({sql: sql, params: {username: 'ecchanger'}}, 5000, function (err, rows) {
should.not.exist(err);
should.exist(rows);
rows.should.length(1);
rows[0].username.should.eql('ecchanger');
done();
});
});

@@ -53,0 +39,0 @@ /* {{{ should_query_timeout_works_fine() */

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