type database/sql/driver.Stmt

39 uses

	database/sql/driver (current package)
		driver.go#L229: 	Prepare(query string) (Stmt, error)
		driver.go#L255: 	PrepareContext(ctx context.Context, query string) (Stmt, error)
		driver.go#L323: 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#L610: 	si          driver.Stmt
		sql.go#L1587: 	var si driver.Stmt
		sql.go#L1669: 	var si driver.Stmt
		sql.go#L2281: 	var si driver.Stmt

	contrib.go.opencensus.io/integrations/ocsql
		driver.go#L37: 	_ driver.Stmt                           = &ocStmt{}
		driver.go#L315: func (c ocConn) Prepare(query string) (stmt driver.Stmt, err error) {
		driver.go#L351: func (c *ocConn) PrepareContext(ctx context.Context, query string) (stmt driver.Stmt, err error) {
		driver.go#L476: 	parent  driver.Stmt
		driver_go1.10.go#L77: func wrapStmt(stmt driver.Stmt, query string, options TraceOptions) driver.Stmt {
		driver_go1.10.go#L89: 			driver.Stmt
		driver_go1.10.go#L93: 			driver.Stmt
		driver_go1.10.go#L98: 			driver.Stmt
		driver_go1.10.go#L103: 			driver.Stmt
		driver_go1.10.go#L109: 			driver.Stmt
		driver_go1.10.go#L114: 			driver.Stmt
		driver_go1.10.go#L120: 			driver.Stmt
		driver_go1.10.go#L126: 			driver.Stmt
		driver_go1.10.go#L134: 			driver.Stmt
		driver_go1.10.go#L139: 			driver.Stmt
		driver_go1.10.go#L145: 			driver.Stmt
		driver_go1.10.go#L151: 			driver.Stmt
		driver_go1.10.go#L158: 			driver.Stmt
		driver_go1.10.go#L164: 			driver.Stmt
		driver_go1.10.go#L171: 			driver.Stmt
		driver_go1.10.go#L178: 			driver.Stmt

	github.com/jackc/pgx/v4/stdlib
		sql.go#L258: func (c *Conn) Prepare(query string) (driver.Stmt, error) {
		sql.go#L262: func (c *Conn) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {

	github.com/lib/pq
		conn.go#L781: func (cn *conn) Prepare(q string) (_ driver.Stmt, err error) {
		copy.go#L64: func (cn *conn) prepareCopyIn(q string) (_ driver.Stmt, err error) {

	golang.org/x/pkgsite/internal/database
		driver.go#L69: func (c *wrapConn) Prepare(query string) (driver.Stmt, error) { return c.oc.Prepare(query) }
		driver.go#L81: func (c *wrapConn) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {