1
0
mirror of https://github.com/golang/go synced 2024-11-16 21:04:45 -07:00

database/sql/driver: fix typo in driver.go

This commit is contained in:
mstmdev 2022-06-05 03:17:07 +08:00
parent fc66cae490
commit 571d01f805

View File

@ -192,9 +192,9 @@ type Execer interface {
// DB.Exec will first prepare a query, execute the statement, and then
// close the statement.
//
// ExecerContext may return ErrSkip.
// ExecContext may return ErrSkip.
//
// ExecerContext must honor the context timeout and return when the context is canceled.
// ExecContext must honor the context timeout and return when the context is canceled.
type ExecerContext interface {
ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
}
@ -219,9 +219,9 @@ type Queryer interface {
// DB.Query will first prepare a query, execute the statement, and then
// close the statement.
//
// QueryerContext may return ErrSkip.
// QueryContext may return ErrSkip.
//
// QueryerContext must honor the context timeout and return when the context is canceled.
// QueryContext must honor the context timeout and return when the context is canceled.
type QueryerContext interface {
QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
}