We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm in the process of migrating an application to use Kysely, and in a few areas, I already have hand-written SQL statements with parameters like:
select * from "person" where first_name between $1 and $2;
NOTE: This is a simple example, in reality, the queries are quite complex.
Is there a way to run a raw query like this with Kysely?
FWIW, the API that I wish existed would be sql.raw(query, ...paramerters);
sql.raw(query, ...paramerters)
The text was updated successfully, but these errors were encountered:
I took a stab at implementing this at #512
Sorry, something went wrong.
@igalklebanov or @koskimas Does kysely follow some release cadence? I need this feature. Any chance you could cut a new release?
Successfully merging a pull request may close this issue.
I'm in the process of migrating an application to use Kysely, and in a few areas, I already have hand-written SQL statements with parameters like:
Is there a way to run a raw query like this with Kysely?
FWIW, the API that I wish existed would be
sql.raw(query, ...paramerters)
;The text was updated successfully, but these errors were encountered: