sqlite3
Version, currently 0.23.026 versions
- 0.23.0latestApr 12, 2026
- 0.22.0not indexedAug 9, 2026
- 0.21.0not indexedAug 9, 2026
- 0.20.0not indexedAug 9, 2026
- 0.19.0not indexedAug 9, 2026
- 0.18.0not indexedAug 9, 2026
- 0.17.0not indexedAug 9, 2026
- 0.16.0not indexedAug 9, 2026
- 0.15.0not indexedAug 9, 2026
- 0.14.0not indexedAug 9, 2026
- 0.13.0not indexedAug 9, 2026
- 0.12.0not indexedAug 9, 2026
- 0.11.0not indexedAug 9, 2026
- 0.10.0not indexedAug 9, 2026
- 0.9.0not indexedAug 9, 2026
- 0.8.3not indexedAug 9, 2026
- 0.8.2not indexedAug 9, 2026
- 0.8.1not indexedAug 9, 2026
- 0.8.0not indexedAug 9, 2026
- 0.7.0not indexedAug 9, 2026
- 0.6.0not indexedAug 9, 2026
- 0.5.0not indexedAug 9, 2026
- 0.4.0not indexedAug 9, 2026
- 0.3.0not indexedAug 9, 2026
- 0.2.0not indexedAug 9, 2026
- 0.1.0not indexedAug 9, 2026
github.com/crystal-lang/crystal-sqlite3
SQLite3 bindings for Crystal
161 stars
275 dependents
License: MIT
Installation
# Add this to your shard.yml
dependencies:
sqlite3:
github: crystal-lang/crystal-sqlite3
version: ~> 0.23.0Then run:
shards installshard.yml
- Crystal
>= 1.0.0, < 2.0.0- License
- MIT
- Authors
- Ary Borenszweig, Brian J. Cardiff
Dependencies
Runtime Dependencies
- db~> 0.14.0github: crystal-lang/crystal-db
README
crystal-sqlite3
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 text, 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: 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
contacts = db.query_all "SELECT name, age FROM contacts", as: {name: String, age: Int64}
puts contacts # => [{name: "John Doe", age: 30}, {name: "Sarah", age: 33}]
end
DB::Any
Timeis implemented asTEXTcolumn usingSQLite3::DATE_FORMAT_SUBSECONDformat (orSQLite3::DATE_FORMAT_SECONDif the text does not contain a dot).Boolis implemented asINTcolumn mapping0/1values.
Setting PRAGMAs
You can adjust certain SQLite3 PRAGMAs automatically when the connection is created by using the query parameters:
require "sqlite3"
DB.open "sqlite3://./data.db?journal_mode=wal&synchronous=normal" do |db|
# this database now uses WAL journal and normal synchronous mode
# (defaults were `delete` and `full`, respectively)
end
The following is the list of supported options:
| Name | Connection key |
|---|---|
| [Busy Timeout][pragma-to] | busy_timeout |
| [Cache Size][pragma-cs] | cache_size |
| [Foreign Keys][pragma-fk] | foreign_keys |
| [Journal Mode][pragma-jm] | journal_mode |
| [Synchronous][pragma-sync] | synchronous |
| [WAL autocheckoint][pragma-walck] | wal_autocheckpoint |
Please note there values passed using these connection keys are passed directly to SQLite3 without check or evaluation. Using incorrect values result in no error by the library.
Guides
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.23.0- Tagged
- Apr 12, 2026
- Commit
271a1314a6c6- Crystal
>= 1.0.0, < 2.0.0- Indexed
- yes
Dependents
and 263 more
Repository
github.com/crystal-lang/crystal-sqlite3
Metadata
- Created
- Aug 12, 2026
- Updated
- Sep 4, 2026
- Synced
- Sep 4, 2026
- Versions
- 26