You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to request a feature to have quoted bindings, with the option of choosing the character used for quoting (", "`"). This feature allows to quote bindings to use them as table names, schema names, etc, while keeping the benefits of escape provided by bindings.
Is this a feature or a bug? Feature
What is the expected behaviour?
SELECT*FROM ??.??;
with bindings
['MySchema','MyTableName']
should produce
SELECT*FROM`MySchema`.`MyTableName`;
Why is this pertinent for this module?
As said above, this can enable to build dynamic queries with table names, column names, etc. as bindings.
Hi!
I'd like to request a feature to have quoted bindings, with the option of choosing the character used for quoting (
"
, "`"). This feature allows to quote bindings to use them as table names, schema names, etc, while keeping the benefits of escape provided by bindings.Is this a feature or a bug? Feature
What is the expected behaviour?
with bindings
should produce
Why is this pertinent for this module?
As said above, this can enable to build dynamic queries with table names, column names, etc. as bindings.
Any existing implementation in similar modules?
Thanks for your great work :)
Cheers! 🎉
Phil
The text was updated successfully, but these errors were encountered: