type database/sql/driver.Conn

10 uses

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

	database/sql
		convert.go#L109: func driverArgsConnLocked(ci driver.Conn, ds *driverStmt, args []any) ([]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#L564: 	ci          driver.Conn
		sql.go#L808: func (t dsnConnector) Connect(_ context.Context) (driver.Conn, error) {
		sql.go#L2671: func resultFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...any) (Result, error) {
		sql.go#L2841: func rowsiFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...any) (driver.Rows, error) {