Go to file
Brian J. Cardiff 503868f434 update to last db design 2016-02-18 18:52:49 -03:00
samples update to last db design 2016-02-18 18:52:49 -03:00
spec update to last db design 2016-02-18 18:52:49 -03:00
src update to last db design 2016-02-18 18:52:49 -03:00
.gitignore Initial commit 2015-03-12 20:31:46 -03:00
.travis.yml enable travis 2015-11-28 14:05:10 +01: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