(query string, dest ...any)
| 197 | type attachSQLRunner interface { |
| 198 | Exec(query string, args ...any) (sql.Result, error) |
| 199 | queryRowScan(query string, dest ...any) error |
| 200 | } |
| 201 | |
| 202 | // plainAttachRunner adapts *sql.DB to attachSQLRunner with no deadlines |
no outgoing calls