mirror of
https://github.com/golang/go
synced 2024-11-23 00:40:08 -07:00
database/sql: improve the documentation of Conn.Raw
Fixes #47500
Change-Id: Ibd44e4db15ea45bb53a6651a6567edfe6104d3d6
GitHub-Last-Rev: 61b8abbc28
GitHub-Pull-Request: golang/go#47503
Reviewed-on: https://go-review.googlesource.com/c/go/+/338970
Reviewed-by: Daniel Theophanes <kardianos@gmail.com>
Trust: Cherry Mui <cherryyz@google.com>
This commit is contained in:
parent
ba66d62b68
commit
5c224ec921
@ -2002,8 +2002,8 @@ func (c *Conn) PrepareContext(ctx context.Context, query string) (*Stmt, error)
|
|||||||
// Raw executes f exposing the underlying driver connection for the
|
// Raw executes f exposing the underlying driver connection for the
|
||||||
// duration of f. The driverConn must not be used outside of f.
|
// duration of f. The driverConn must not be used outside of f.
|
||||||
//
|
//
|
||||||
// Once f returns and err is nil, the Conn will continue to be usable
|
// Once f returns and err is not equal to driver.ErrBadConn, the Conn will
|
||||||
// until Conn.Close is called.
|
// continue to be usable until Conn.Close is called.
|
||||||
func (c *Conn) Raw(f func(driverConn interface{}) error) (err error) {
|
func (c *Conn) Raw(f func(driverConn interface{}) error) (err error) {
|
||||||
var dc *driverConn
|
var dc *driverConn
|
||||||
var release releaseConn
|
var release releaseConn
|
||||||
|
Loading…
Reference in New Issue
Block a user