Go to file
Ary Borenszweig db48a03797 Merge pull request #6 from benjolitz/flag_support_and_dumping
Initial support/tests for SQLite flags and db dump
2016-03-17 10:53:10 -03:00
spec Seperate out LibSqlite3 enums as they do not change 2016-03-16 17:17:56 -07:00
src Seperate out LibSqlite3 enums as they do not change 2016-03-16 17:17:56 -07: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