crystal-sqlite3

SQLite3 bindings for Crystal.

This is a work in progress.

Documentation

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