Browse Source

Pass args to Query from Each

Volodymyr Tkach 2 years ago
parent
commit
a3784baa24
2 changed files with 3 additions and 3 deletions
  1. 1 1
      gosql/common/common.go
  2. 2 2
      gosql/common/dbmethods.go

+ 1 - 1
gosql/common/common.go

@@ -21,7 +21,7 @@ import (
 type Engine interface {
 type Engine interface {
 	Begin(ctx context.Context, opts *sql.TxOptions) (*Tx, error)
 	Begin(ctx context.Context, opts *sql.TxOptions) (*Tx, error)
 	Close() error
 	Close() error
-	Each(ctx context.Context, query string, logic func(ctx context.Context, rows *Rows) error) error
+	Each(ctx context.Context, query string, logic func(ctx context.Context, rows *Rows) error, args ...any) error
 	Exec(ctx context.Context, query string, args ...any) (sql.Result, error)
 	Exec(ctx context.Context, query string, args ...any) (sql.Result, error)
 	Ping(context.Context) error
 	Ping(context.Context) error
 	Prepare(ctx context.Context, query string) (*sql.Stmt, error)
 	Prepare(ctx context.Context, query string) (*sql.Stmt, error)

+ 2 - 2
gosql/common/dbmethods.go

@@ -42,11 +42,11 @@ func (d *DBMethods) Close() error {
 	return err
 	return err
 }
 }
 
 
-func (d *DBMethods) Each(ctx context.Context, query string, callback func(ctx context.Context, rows *Rows) error) error {
+func (d *DBMethods) Each(ctx context.Context, query string, callback func(ctx context.Context, rows *Rows) error, args ...any) error {
 	if callback == nil {
 	if callback == nil {
 		return fmt.Errorf("callback is not set")
 		return fmt.Errorf("callback is not set")
 	}
 	}
-	rows, err := d.Query(ctx, query)
+	rows, err := d.Query(ctx, query, args...)
 	if err != nil {
 	if err != nil {
 		return err
 		return err
 	}
 	}