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