(context.Context, string, ...interface{})
| 52 | type StdSqlCtx interface { |
| 53 | StdSql |
| 54 | QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) |
| 55 | QueryRowContext(context.Context, string, ...interface{}) *sql.Row |
| 56 | ExecContext(context.Context, string, ...interface{}) (sql.Result, error) |
| 57 | } |
no outgoing calls