typo fix database

This commit is contained in:
BHARAT SEWANI
2018-06-16 03:08:32 +05:30
parent 7dac62b603
commit 60e1b025c9
6 changed files with 7 additions and 7 deletions

View File

@@ -185,7 +185,7 @@ At this point, you should know a bit about developping database drivers in Go. O
## database/sql
databse/sql defines even more high-level methods on top of database/sql/driver for more convenient database operations, and it suggests that you implement a connection pool.
database/sql defines even more high-level methods on top of database/sql/driver for more convenient database operations, and it suggests that you implement a connection pool.
type DB struct {
driver driver.Driver

View File

@@ -13,7 +13,7 @@ There are a couple of drivers that support MySQL in Go. Some of them implement t
I'll use the first driver in the following examples (I use this one in my personal projects too), and I also recommend that you use it for the following reasons:
- It's a new database driver and supports more features.
- Fully supports `databse/sql` interface standards.
- Fully supports `database/sql` interface standards.
- Supports keepalive, long connections with thread-safety.
## Samples