mirror of
https://gitea.invidious.io/iv-org/shard-crystal-sqlite3.git
synced 2024-08-15 00:53:26 +00:00
397 B
397 B
crystal-sqlite3
SQLite3 bindings for Crystal.
This is a work in progress.
Projectfile
deps do
github "manastech/crystal-sqlite3"
end
Usage
require "sqlite3"
db = SQLite3::Database.new( "data.db" )
db.execute("select * from table") do |row|
p row
end
db.close