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

dbay

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dbay - npm Package Compare versions

Comparing version 0.113.0 to 10.113.1

2

package.json
{
"name": "dbay",
"version": "0.113.0",
"version": "10.113.1",
"description": "In-Process, In-Memory & File-Based Relational Data Processing with SQLite, BetterSQLite3",

@@ -5,0 +5,0 @@ "main": "lib/main.js",

@@ -388,4 +388,4 @@

— the right thing to do is to call `db.create_insert { into: table_name, on_conflict: 'do nothing', }`. Assuming table `t1`
has been declared as above, calling
— the right thing to do is to call `db.create_insert { into: table_name, on_conflict: 'do nothing', }`.
Assuming table `t1` has been declared as above, calling

@@ -402,2 +402,4 @@ ```coffee

on conflict do nothing;
-- |<------>|
-- inserted string
```

@@ -416,5 +418,5 @@

values ( $b, $c )
on conflict do update set
b = excluded.b,
c = excluded.c;
on conflict do update set --| conflict resolution clause
b = excluded.b, --| mandated by { update: true, }
c = excluded.c; --| containing same fields as above
```

@@ -421,0 +423,0 @@

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