2016-06-24 20:27:06 +00:00
|
|
|
[![Build Status](https://travis-ci.org/crystal-lang/crystal-db.svg?branch=master)](https://travis-ci.org/crystal-lang/crystal-db)
|
2016-02-26 03:06:37 +00:00
|
|
|
|
2016-02-26 02:53:23 +00:00
|
|
|
# crystal-db
|
|
|
|
|
2016-06-27 17:11:54 +00:00
|
|
|
Common db api for crystal. You will need to a specific driver to access a database.
|
2016-02-26 02:53:23 +00:00
|
|
|
|
2016-06-27 17:11:54 +00:00
|
|
|
* [sqlite](https://github.com/crystal-lang/crystal-sqlite3)
|
|
|
|
* [mysql](https://github.com/crystal-lang/crystal-mysql)
|
2016-02-26 02:53:23 +00:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
Add this to your application's `shard.yml`:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
dependencies:
|
|
|
|
db:
|
2016-06-24 20:27:06 +00:00
|
|
|
github: crystal-lang/crystal-db
|
2016-02-26 02:53:23 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Since this is an abstract db api, it's usage is through a concrete database driver.
|
|
|
|
|
|
|
|
```crystal
|
|
|
|
require "db"
|
|
|
|
require "sqlite3"
|
|
|
|
|
|
|
|
DB.open "sqlite3:./file.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
|
|
|
|
```
|
2016-02-26 03:06:37 +00:00
|
|
|
|
2016-02-26 02:53:23 +00:00
|
|
|
## Roadmap
|
|
|
|
|
|
|
|
Issues not yet addressed
|
|
|
|
|
2016-12-07 22:28:15 +00:00
|
|
|
- [ ] Support non prepared statements. [#25](https://github.com/crystal-lang/crystal-db/pull/25)
|
|
|
|
- [ ] Time data type. crystal-mysql & crystal-sqlite3 support Time already.
|
2016-06-24 13:59:33 +00:00
|
|
|
- [x] Data type extensibility. Allow each driver to extend the data types allowed.
|
|
|
|
- [ ] Transactions.
|
2016-12-07 22:28:15 +00:00
|
|
|
- [x] Connection pool.
|
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
|
|
|
|
|
2016-06-24 20:27:06 +00:00
|
|
|
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
|