No description
Find a file
2016-06-15 12:05:12 -03:00
spec Updated to Crystal 0.18.0 2016-06-15 12:05:12 -03:00
src Updated to Crystal 0.18.0 2016-06-15 12:05:12 -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 Updated to Crystal 0.18.0 2016-06-15 12:05:12 -03:00

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