|
@@ -26,6 +26,9 @@ type Engine interface {
|
|
Prepare(ctx context.Context, query string) (*sql.Stmt, error)
|
|
Prepare(ctx context.Context, query string) (*sql.Stmt, error)
|
|
Query(ctx context.Context, query string, args ...any) (*sql.Rows, error)
|
|
Query(ctx context.Context, query string, args ...any) (*sql.Rows, error)
|
|
QueryRow(ctx context.Context, query string, args ...any) *sql.Row
|
|
QueryRow(ctx context.Context, query string, args ...any) *sql.Row
|
|
|
|
+ SetConnMaxLifetime(d time.Duration)
|
|
|
|
+ SetMaxIdleConns(n int)
|
|
|
|
+ SetMaxOpenConns(n int)
|
|
Transaction(ctx context.Context, queries func(ctx context.Context, tx *Tx) error) error
|
|
Transaction(ctx context.Context, queries func(ctx context.Context, tx *Tx) error) error
|
|
}
|
|
}
|
|
|
|
|