update readme and docs links to drivers

This commit is contained in:
Brian J. Cardiff 2016-12-13 08:53:55 -03:00
parent 825046e556
commit 1049d95562
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,7 @@ Common db api for crystal. You will need to a specific driver to access a databa
* [sqlite](https://github.com/crystal-lang/crystal-sqlite3) * [sqlite](https://github.com/crystal-lang/crystal-sqlite3)
* [mysql](https://github.com/crystal-lang/crystal-mysql) * [mysql](https://github.com/crystal-lang/crystal-mysql)
* [postgres](https://github.com/will/crystal-pg)
## Installation ## Installation

View file

@ -2,7 +2,7 @@ require "uri"
# The DB module is a unified interface to database access. # The DB module is a unified interface to database access.
# Database dialects is supported by custom database driver shards. # Database dialects is supported by custom database driver shards.
# Check [manastech/crystal-sqlite3](https://github.com/manastech/crystal-sqlite3) for example. # Check [crystal-lang/crystal-sqlite3](https://github.com/crystal-lang/crystal-sqlite3) for example.
# #
# Drivers implementors check `Driver` class. # Drivers implementors check `Driver` class.
# #