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

sqb

Package Overview
Dependencies
Maintainers
1
Versions
174
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sqb - npm Package Compare versions

Comparing version 0.12.0 to 0.12.1

13

lib/connect/CursorStream.js

@@ -97,4 +97,13 @@ /* SQB

cursor.next(function(err, row) {
if (err)
return self.destroy(err);
if (err) {
/* istanbul ignore next */
if (typeof self.destroy == 'function')
self.destroy(err);
else {
self.close(function() {
self.emit('error', err);
});
}
return;
}
if (!row) {

@@ -101,0 +110,0 @@ if (!self._objectMode) {

2

package.json
{
"name": "sqb",
"description": "Plugin-driven, multi-dialect SQL query builder and Database connection framework for JavaScript",
"version": "0.12.0",
"version": "0.12.1",
"author": "Panates Ltd.",

@@ -6,0 +6,0 @@ "contributors": [

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