Socket
Book a DemoInstallSign in
Socket

qry

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qry

1.0.0
bundlerRubygems
Version published
Maintainers
1
Created
Source

Qry

Usage

Connect

require 'qry'

qry = Qry.connect(...) # Same arguments as Sequel gem

Run

qry.run(<<~SQL)
  create table fruits (
    id integer not null primary key autoincrement,
    name varchar(255)
  )
SQL

Insert

qry.insert('insert into fruits (name) values (?), (?)', 'Strawberry', 'Orange')

Fetch

fruits = qry.fetch('select * from fruits')
fruits.size    # 2
fruits[0].name # Strawberry
fruits[1].name # Orange

Update

qry.update('update fruits set name = ? where id = ?', 'Mango', fruits[0].id)

fruits = qry.fetch('select * from fruits')
fruits[0].name # Mango
fruits[1].name # Orange

Delete

qry.delete('delete from fruits where id = ?', fruits[1].id)

fruits = qry.fetch('select * from fruits')
fruits.size    # 1
fruits[0].name # Mango

FAQs

Package last updated on 11 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.