type database/sql.Conn

16 uses

	database/sql (current package)
		sql.go#L1923: func (db *DB) Conn(ctx context.Context) (*Conn, error) {
		sql.go#L1941: 	conn := &Conn{
		sql.go#L1959: type Conn struct {
		sql.go#L1979: func (c *Conn) grabConn(context.Context) (*driverConn, releaseConn, error) {
		sql.go#L1988: func (c *Conn) PingContext(ctx context.Context) error {
		sql.go#L1998: func (c *Conn) ExecContext(ctx context.Context, query string, args ...any) (Result, error) {
		sql.go#L2008: func (c *Conn) QueryContext(ctx context.Context, query string, args ...any) (*Rows, error) {
		sql.go#L2022: func (c *Conn) QueryRowContext(ctx context.Context, query string, args ...any) *Row {
		sql.go#L2035: func (c *Conn) PrepareContext(ctx context.Context, query string) (*Stmt, error) {
		sql.go#L2048: func (c *Conn) Raw(f func(driverConn any) error) (err error) {
		sql.go#L2086: func (c *Conn) BeginTx(ctx context.Context, opts *TxOptions) (*Tx, error) {
		sql.go#L2096: func (c *Conn) closemuRUnlockCondReleaseConn(err error) {
		sql.go#L2103: func (c *Conn) txCtx() context.Context {
		sql.go#L2107: func (c *Conn) close(err error) error {
		sql.go#L2128: func (c *Conn) Close() error {
		sql.go#L2566: 	_ stmtConnGrabber = &Conn{}