Go to file
Brian J. Cardiff adf64daa08 Bump version. Release notes.
Add SQLite3::VERSION constant
2017-11-07 23:49:41 -03:00
samples update to last db design 2016-02-18 18:52:49 -03:00
spec Multi-step exec support (#27) 2017-09-14 15:51:25 -03:00
src Bump version. Release notes. 2017-11-07 23:49:41 -03:00
.gitignore update .gitignore 2016-12-26 10:46:08 -03:00
.travis.yml Update travis 2017-05-29 15:32:31 -03:00
CHANGELOG.md Bump version. Release notes. 2017-11-07 23:49:41 -03:00
LICENSE add license 2016-06-24 00:02:44 -03:00
README.md Add Bool support 2016-12-14 13:52:12 -03:00
shard.yml Bump version. Release notes. 2017-11-07 23:49:41 -03:00

README.md

crystal-sqlite3 Build Status

SQLite3 bindings for Crystal.

Check crystal-db for general db driver documentation. crystal-sqlite3 driver is registered under sqlite3:// uri.

Installation

Add this to your application's shard.yml:

dependencies:
  sqlite3:
    github: crystal-lang/crystal-sqlite3

Usage

require "sqlite3"

DB.open "sqlite3://./data.db" do |db|
  db.exec "create table contacts (name string, age integer)"
  db.exec "insert into contacts values (?, ?)", "John Doe", 30

  args = [] of DB::Any
  args << "Sarah"
  args << 33
  db.exec "insert into contacts values (?, ?)", args

  puts "max age:"
  puts db.scalar "select max(age) from contacts" # => 33

  puts "contacts:"
  db.query "select name, age from contacts order by age desc" do |rs|
    puts "#{rs.column_name(0)} (#{rs.column_name(1)})"
    # => name (age)
    rs.each do
      puts "#{rs.read(String)} (#{rs.read(Int32)})"
      # => Sarah (33)
      # => John Doe (30)
    end
  end
end

DB::Any

  • Time is implemented as TEXT column using SQLite3::DATE_FORMAT format.
  • Bool is implemented as INT column mapping 0/1 values.