type database/sql/driver.Stmt

11 uses

	database/sql/driver (current package)
		driver.go#L236: 	Prepare(query string) (Stmt, error)
		driver.go#L262: 	PrepareContext(ctx context.Context, query string) (Stmt, error)
		driver.go#L330: type Stmt interface {

	database/sql
		convert.go#L117: 	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#L713: 	si          driver.Stmt
		sql.go#L1723: 	var si driver.Stmt
		sql.go#L1805: 	var si driver.Stmt
		sql.go#L2427: 	var si driver.Stmt