-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Enable placeholders support in all query builder methods #1
Comments
Can you list all methods that need it? I will try to implement it. |
I'm also desperately in need of args support in GROUP BY and ORDER statements |
I'll look into that :-)
…On Thu, Apr 20, 2017, 5:23 PM bbrodriges ***@***.***> wrote:
I'm also desperately in need of args support in GROUP BY and ORDER
statements
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AE_mfVka4ne-Fe9A6y5H9wKfK6MbT309ks5rxyQsgaJpZM4H-vC5>
.
|
@bbrodriges @vearutop How do you see placeholders usage? It would be nice if you provide a couple of examples. From my point of view |
Group by is often used with aggregate functions.
…On Mon, May 15, 2017, 12:55 AM Ivan Kirichenko ***@***.***> wrote:
@bbrodriges <https://github.com/bbrodriges> @vearutop
<https://github.com/vearutop> How do you see placeholders usage? It would
be nice if you provide a couple of examples.
From my point of view GROUP BY clause (for instance) receives a list of
columns and additional options (like ASC or DESC). And those can be
passed as strings.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AE_mfWM9ykhLK7ki8rEPxcFhShUu4XXJks5r5zIDgaJpZM4H-vC5>
.
|
How about the FROM clause? E.g. when using derived tables (subqueries in the FROM clause) |
Missing placeholders' support for FROM clause. |
Currently only
Where
method acceptsargs
as placeholder valuesOther methods like
GroupBy
can not accept placeholdered dataPlease add placeholders support to these methods to provide means for building rich SQL statements.
The text was updated successfully, but these errors were encountered: