(ctx context.Context, query string, args ...interface{})
| 184 | QueryRow(query string, args ...interface{}) *sql.Row |
| 185 | Query(query string, args ...interface{}) (*sql.Rows, error) |
| 186 | ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) |
| 187 | PrepareContext(ctx context.Context, query string) (*sql.Stmt, error) |
| 188 | QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row |
| 189 | QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) |