Go to file
Ary Borenszweig aa641a0fc7 travis: one more try 2016-03-17 12:12:03 -03:00
spec Simplify flags creation and usage 2016-03-17 10:58:47 -03:00
src Simplify flags creation and usage 2016-03-17 10:58:47 -03:00
.gitignore Initial commit 2015-03-12 20:31:46 -03:00
.travis.yml travis: one more try 2016-03-17 12:12:03 -03:00
README.md update readme for shards 2015-11-28 14:07:42 +01:00
shard.yml Added shard.yml 2015-09-21 14:55:13 -03:00

README.md

crystal-sqlite3 Build Status

SQLite3 bindings for Crystal.

This is a work in progress.

Documentation

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