type database/sql/driver.Conn

28 uses

	database/sql/driver (current package)
		driver.go#L94: 	Open(name string) (Conn, error)
		driver.go#L132: 	Connect(context.Context) (Conn, error)
		driver.go#L227: type Conn interface {

	database/sql
		convert.go#L107: func driverArgsConnLocked(ci driver.Conn, ds *driverStmt, args []interface{}) ([]driver.NamedValue, error) {
		ctxutil.go#L13: func ctxDriverPrepare(ctx context.Context, ci driver.Conn, query string) (driver.Stmt, error) {
		ctxutil.go#L97: func ctxDriverBegin(ctx context.Context, opts *TxOptions, ci driver.Conn) (driver.Tx, error) {
		sql.go#L461: 	ci          driver.Conn
		sql.go#L706: func (t dsnConnector) Connect(_ context.Context) (driver.Conn, error) {
		sql.go#L2517: func resultFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...interface{}) (Result, error) {
		sql.go#L2688: func rowsiFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...interface{}) (driver.Rows, error) {

	contrib.go.opencensus.io/integrations/ocsql
		driver.go#L23: 	driver.Conn
		driver.go#L102: func (d ocDriver) Open(name string) (driver.Conn, error) {
		driver.go#L111: func WrapConn(c driver.Conn, options ...TraceOption) driver.Conn {
		driver.go#L121: 	parent  driver.Conn
		driver_go1.10.go#L48: func wrapConn(parent driver.Conn, options TraceOptions) driver.Conn {
		driver_go1.10.go#L197: func (d ocDriver) Connect(ctx context.Context) (driver.Conn, error) {

	github.com/jackc/pgx/v4/stdlib
		sql.go#L141: func (c connector) Connect(ctx context.Context) (driver.Conn, error) {
		sql.go#L174: func (d *Driver) Open(name string) (driver.Conn, error) {
		sql.go#L208: func (dc *driverConnector) Connect(ctx context.Context) (driver.Conn, error) {

	github.com/lib/pq
		conn.go#L47: func (d *Driver) Open(name string) (driver.Conn, error) {
		conn.go#L265: func Open(dsn string) (_ driver.Conn, err error) {
		conn.go#L270: func DialOpen(d Dialer, dsn string) (_ driver.Conn, err error) {
		connector.go#L26: func (c *Connector) Connect(ctx context.Context) (driver.Conn, error) {

	golang.org/x/pkgsite/internal/database
		driver.go#L39: func (d *wrapOCDriver) Open(name string) (driver.Conn, error) {
		driver.go#L52: 	driver.Conn
		driver.go#L61: 	underlying driver.Conn