type database/sql.Conn

16 uses

	database/sql (current package)
		sql.go#L1945: func (db *DB) Conn(ctx context.Context) (*Conn, error) {
		sql.go#L1958: 	conn := &Conn{
		sql.go#L1976: type Conn struct {
		sql.go#L2000: func (c *Conn) grabConn(context.Context) (*driverConn, releaseConn, error) {
		sql.go#L2012: func (c *Conn) PingContext(ctx context.Context) error {
		sql.go#L2022: func (c *Conn) ExecContext(ctx context.Context, query string, args ...any) (Result, error) {
		sql.go#L2032: func (c *Conn) QueryContext(ctx context.Context, query string, args ...any) (*Rows, error) {
		sql.go#L2046: func (c *Conn) QueryRowContext(ctx context.Context, query string, args ...any) *Row {
		sql.go#L2059: func (c *Conn) PrepareContext(ctx context.Context, query string) (*Stmt, error) {
		sql.go#L2072: func (c *Conn) Raw(f func(driverConn any) error) (err error) {
		sql.go#L2110: func (c *Conn) BeginTx(ctx context.Context, opts *TxOptions) (*Tx, error) {
		sql.go#L2120: func (c *Conn) closemuRUnlockCondReleaseConn(err error) {
		sql.go#L2127: func (c *Conn) txCtx() context.Context {
		sql.go#L2131: func (c *Conn) close(err error) error {
		sql.go#L2152: func (c *Conn) Close() error {
		sql.go#L2591: 	_ stmtConnGrabber = &Conn{}