mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
database/sql: link to driver wiki page
Fixes #5127 R=golang-dev, adg CC=golang-dev https://golang.org/cl/8011044
This commit is contained in:
parent
209f6b1d2c
commit
eee3e63607
1 changed files with 6 additions and 1 deletions
|
|
@ -4,6 +4,9 @@
|
|||
|
||||
// Package sql provides a generic interface around SQL (or SQL-like)
|
||||
// databases.
|
||||
//
|
||||
// The sql package must be used in conjunction with a database driver.
|
||||
// See http://golang.org/s/sqldrivers for a list of drivers.
|
||||
package sql
|
||||
|
||||
import (
|
||||
|
|
@ -325,7 +328,9 @@ func (db *DB) removeDepLocked(x finalCloser, dep interface{}) func() error {
|
|||
// database name and connection information.
|
||||
//
|
||||
// Most users will open a database via a driver-specific connection
|
||||
// helper function that returns a *DB.
|
||||
// helper function that returns a *DB. No database drivers are included
|
||||
// in the Go standard library. See http://golang.org/s/sqldrivers for
|
||||
// a list of third-party drivers.
|
||||
//
|
||||
// Open may just validate its arguments without creating a connection
|
||||
// to the database. To verify that the data source name is valid, call
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue