SQLite3 bindings for Crystal.
This is a work in progress.
Documentation
deps do github "manastech/crystal-sqlite3" end
require "sqlite3" db = SQLite3::Database.new( "data.db" ) db.execute("select * from table") do |row| p row end db.close