Skip to content

Instantly share code, notes, and snippets.

@webgtx
Created May 26, 2023 17:21
Show Gist options
  • Select an option

  • Save webgtx/55ea00e6f719959610cdde546ad1de9c to your computer and use it in GitHub Desktop.

Select an option

Save webgtx/55ea00e6f719959610cdde546ad1de9c to your computer and use it in GitHub Desktop.
sqilte3 scheme example in ruby
require "sqlite3"
db = SQLite3::Database.new("database.db")
db.execute(<<-SQL)
CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY,
name TXT,
age INTEGER
);
SQL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment