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
1
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.8 to 0.6.9

4

anydb-sql.js

@@ -135,4 +135,4 @@ var anyDB = require('any-db');

if (where._logQueries) {
console.log("anydb-sql query complete:", query.text);
console.log("anydb-sql with params:", query.values);
console.log("anydb-sql query complete: `" + query.text
+ "` with params", query.values);
}

@@ -139,0 +139,0 @@ return res && res.rows ? grouper.process(res.rows) : null;

{
"name": "anydb-sql",
"version": "0.6.8",
"version": "0.6.9",
"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",

@@ -67,2 +67,3 @@ var test = require('tap').test;

return db.transaction(function(tx) {
tx.logQueries(true);
return user.insert({id: 2, name: 'test2'}).execWithin(tx)

@@ -69,0 +70,0 @@ .then(function() {

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