type database/sql/driver.Stmt
11 uses
database/sql/driver (current package)
driver.go#L235: Prepare(query string) (Stmt, error)
driver.go#L261: PrepareContext(ctx context.Context, query string) (Stmt, error)
driver.go#L329: type Stmt interface {
database/sql
convert.go#L115: var si driver.Stmt
ctxutil.go#L13: func ctxDriverPrepare(ctx context.Context, ci driver.Conn, query string) (driver.Stmt, error) {
ctxutil.go#L63: func ctxDriverStmtExec(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Result, error) {
ctxutil.go#L80: func ctxDriverStmtQuery(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Rows, error) {
sql.go#L664: si driver.Stmt
sql.go#L1691: var si driver.Stmt
sql.go#L1778: var si driver.Stmt
sql.go#L2403: var si driver.Stmt