chore: ⬆️ Vendor for new deps
This commit is contained in:
22
vendor/github.com/golang-sql/sqlexp/querier.go
generated
vendored
Normal file
22
vendor/github.com/golang-sql/sqlexp/querier.go
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
// Copyright 2017 The Go Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package sqlexp
|
||||
|
||||
import (
|
||||
"context"
|
||||
"database/sql"
|
||||
)
|
||||
|
||||
// Querier is the common interface to execute queries on a DB, Tx, or Conn.
|
||||
type Querier interface {
|
||||
ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error)
|
||||
QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
|
||||
QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row
|
||||
}
|
||||
|
||||
var (
|
||||
_ Querier = &sql.DB{}
|
||||
_ Querier = &sql.Tx{}
|
||||
)
|
||||
Reference in New Issue
Block a user