type database/sql/driver.Conn
10 uses
database/sql/driver (current package)
driver.go#L94: Open(name string) (Conn, error)
driver.go#L135: Connect(context.Context) (Conn, error)
driver.go#L233: type Conn interface {
database/sql
convert.go#L107: 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#L515: ci driver.Conn
sql.go#L760: func (t dsnConnector) Connect(_ context.Context) (driver.Conn, error) {
sql.go#L2654: func resultFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...any) (Result, error) {
sql.go#L2828: func rowsiFromStatement(ctx context.Context, ci driver.Conn, ds *driverStmt, args ...any) (driver.Rows, error) {