QueryContext implement QueryerContext.
(ctx context.Context, args []driver.NamedValue)
| 44 | |
| 45 | // QueryContext implement QueryerContext. |
| 46 | func (s *SQLiteStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) { |
| 47 | return s.query(ctx, args) |
| 48 | } |
| 49 | |
| 50 | // ExecContext implement ExecerContext. |
| 51 | func (s *SQLiteStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) { |