sqlite3
Version, currently 0.15.025 versions
- 0.22.0latestSep 5, 2025
- 0.21.0not indexedApr 1, 2026
- 0.20.0not indexedApr 1, 2026
- 0.19.0not indexedApr 1, 2026
- 0.18.0not indexedApr 1, 2026
- 0.17.0not indexedApr 1, 2026
- 0.16.0not indexedApr 1, 2026
- 0.15.0not indexedApr 1, 2026
- 0.14.0not indexedApr 1, 2026
- 0.13.0not indexedApr 1, 2026
- 0.12.0not indexedApr 1, 2026
- 0.11.0not indexedApr 1, 2026
- 0.10.0not indexedApr 1, 2026
- 0.9.0not indexedApr 1, 2026
- 0.8.3not indexedApr 1, 2026
- 0.8.2not indexedApr 1, 2026
- 0.8.1not indexedApr 1, 2026
- 0.8.0not indexedApr 1, 2026
- 0.7.0not indexedApr 1, 2026
- 0.6.0not indexedApr 1, 2026
- 0.5.0not indexedApr 1, 2026
- 0.4.0not indexedApr 1, 2026
- 0.3.0not indexedApr 1, 2026
- 0.2.0not indexedApr 1, 2026
- 0.1.0not indexedApr 1, 2026
github.com/dsisnero/crystal-sqlite3
SQLite3 bindings for Crystal
Nothing has been indexed for 0.15.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
sqlite3:
github: dsisnero/crystal-sqlite3
version: ~> 0.15.0Then run:
shards installshard.yml
No shard.yml has been indexed for 0.15.0. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
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
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.15.0- Tagged
- Apr 1, 2026
- Commit
aed9acb22519- Indexed
- not yet
Dependents
Repository
github.com/dsisnero/crystal-sqlite3
Metadata
- Created
- Aug 19, 2026
- Updated
- Aug 24, 2026
- Synced
- Aug 24, 2026
- Versions
- 25