shard-crystal-db/README.md

101 lines
3.3 KiB
Markdown
Raw Permalink Normal View History

[![Build Status](https://github.com/crystal-lang/crystal-db/workflows/CI/badge.svg)](https://github.com/crystal-lang/crystal-db/actions?query=workflow%3ACI+event%3Apush+branch%3Amaster)
2016-02-26 03:06:37 +00:00
2016-02-26 02:53:23 +00:00
# crystal-db
2018-11-07 18:44:14 +00:00
Common db api for crystal. You will need to have a specific driver to access a database.
2016-02-26 02:53:23 +00:00
* [SQLite](https://github.com/crystal-lang/crystal-sqlite3)
* [MySQL](https://github.com/crystal-lang/crystal-mysql)
* [PostgreSQL](https://github.com/will/crystal-pg)
2022-01-27 13:56:35 +00:00
* [ODBC](https://github.com/naqvis/crystal-odbc)
* [Cassandra](https://github.com/kaukas/crystal-cassandra)
2022-10-27 16:36:46 +00:00
* [DuckDB](https://github.com/amauryt/crystal-duckdb)
2023-11-02 19:27:55 +00:00
* [Microsoft SQL Server](https://github.com/wonderix/crystal-tds)
2016-02-26 02:53:23 +00:00
## Installation
If you are creating a shard that will work with _any_ driver, then add `crystal-db` as a dependency in `shard.yml`:
2016-02-26 02:53:23 +00:00
```yaml
dependencies:
db:
github: crystal-lang/crystal-db
2016-02-26 02:53:23 +00:00
```
If you are creating an application that will work with _some specific_ driver(s), then add them in `shard.yml`:
```yaml
dependencies:
sqlite3:
github: crystal-lang/crystal-sqlite3
```
`crystal-db` itself will be a nested dependency if drivers are included.
Note: Multiple drivers can be included in the same application.
2016-12-21 21:17:45 +00:00
## Documentation
2023-05-29 20:47:21 +00:00
* [Latest API](https://crystal-lang.github.io/crystal-db/api/latest/)
2016-12-21 21:17:45 +00:00
* [Crystal book](https://crystal-lang.org/docs/database/)
2016-02-26 02:53:23 +00:00
## Usage
This shard only provides an abstract database API. In order to use it, a specific driver for the intended database has to be required as well:
The following example uses SQLite where `?` indicates the arguments. If PostgreSQL is used `$1`, `$2`, etc. should be used. `crystal-db` does not interpret the statements.
2016-02-26 02:53:23 +00:00
```crystal
require "db"
require "sqlite3"
DB.open "sqlite3:./file.db" do |db|
# When using the pg driver, use $1, $2, etc. instead of ?
db.exec "create table contacts (name text, age integer)"
2016-02-26 02:53:23 +00:00
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
2016-02-26 02:53:23 +00:00
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
```
2016-02-26 03:06:37 +00:00
2016-02-26 02:53:23 +00:00
## Roadmap
Issues not yet addressed:
2016-02-26 02:53:23 +00:00
2016-12-14 15:25:32 +00:00
- [x] Support non prepared statements. [#25](https://github.com/crystal-lang/crystal-db/pull/25)
2016-12-14 18:21:33 +00:00
- [x] Time data type. (implementation details depends on actual drivers)
2016-06-24 13:59:33 +00:00
- [x] Data type extensibility. Allow each driver to extend the data types allowed.
2016-12-14 15:25:32 +00:00
- [x] Transactions & nested transactions. [#27](https://github.com/crystal-lang/crystal-db/pull/27)
2016-12-07 22:28:15 +00:00
- [x] Connection pool.
2022-01-27 13:56:35 +00:00
- [x] Logging
2016-06-24 13:59:33 +00:00
- [ ] Direct access to `IO` to avoid memory allocation for blobs.
2016-02-26 02:53:23 +00:00
## Contributing
1. Fork it ( https://github.com/crystal-lang/crystal-db/fork )
2016-02-26 02:53:23 +00:00
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request
## Contributors
- [bcardiff](https://github.com/bcardiff) Brian J. Cardiff - creator, maintainer