Go to file
Brian J. Cardiff 5266a7e7b3 column_count, column_name, close statement 2016-02-18 18:52:48 -03:00
spec column_count, column_name, close statement 2016-02-18 18:52:48 -03:00
src column_count, column_name, close statement 2016-02-18 18:52:48 -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