No description
Find a file
2015-09-21 14:55:13 -03:00
spec Updated to Crystal 0.8.0 2015-09-21 14:55:13 -03:00
src Updated to Crystal 0.8.0 2015-09-21 14:55:13 -03:00
.gitignore Initial commit 2015-03-12 20:31:46 -03:00
README.md Remove travis for now... 2015-06-30 23:22:41 -03:00

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