Felix Becker

Results 540 comments of Felix Becker

I am not familiar with MSSQL, but usually you can’t use a single placeholder to replace all values passed to IN. You would need one placeholder per value, but you...

It works without useBind() because then Sequeluze will just generate a different query. If you leave it in, Sequelize will pass the query with placeholders and values to the DB,...

No, it's impossible.

For anyone stumbling upon this, `appendAll` is equivalent to ```ts toAppend.reduce((prev, curr) => prev.append(delimeter).append(curr), statement) ```

I know, but I don't want to do two-step compilation.

## :rotating_light: The automated release from the `master` branch failed. :rotating_light: I recommend you give this issue a high priority, so other packages depending on you could benefit from your...

@Strate I understand your frustration but please understand my desire as a maintainer to keep code understandable. I didn't close your PR, I said that my gut feeling was that...

How would you do it without sql template strings?

Isn't this essentially ```ts toAppend.reduce((prev, curr) => prev.append(delim).append(curr), stmt) ```

Did you actually measure a performance difference? I doubt it has one (after all, you are IO-bound anyway for database queries). Readability is a matter of taste, if I read...