New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

anydb-sql

Package Overview
Dependencies
Maintainers
3
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anydb-sql - npm Package Compare versions

Comparing version 0.6.18 to 0.6.19

4

anydb-sql.js

@@ -210,4 +210,6 @@

}
db.queryAsync = function() {
return pool.queryAsync.apply(pool, arguments);
}
function columnName(c) {

@@ -214,0 +216,0 @@ var name = c.alias || c.name;

{
"name": "anydb-sql",
"version": "0.6.18",
"version": "0.6.19",
"description": "Minimal ORM for mysql, postgresql and sqlite with complete arbitrary SQL query support (based on brianc's query builder sql)",

@@ -5,0 +5,0 @@ "main": "anydb-sql.js",

@@ -147,3 +147,8 @@ var test = require('blue-tape').test;

});
t.test('db.queryAsync', function(t) {
db.queryAsync('select * from users').then(function(results) {
t.ok(results.rows, 'should return some rows');
t.end();
});
})
t.test('db.close', function(t) {

@@ -164,4 +169,6 @@ t.plan(1);

});
});
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