-
Notifications
You must be signed in to change notification settings - Fork 548
improve execute many #207
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
improve execute many #207
Conversation
fixed #206 |
@SRombauts it's fixed now. However we should think about changing the name of the bind function to something like sql_bind so it is no name of a standard function anymore in the next major release |
Yes please, if you can work on this, it would be nice to improve the naming before I release a new version. |
You could open a 3.x branch |
Thanks, I have integrated your fix! |
Regarding a 3.x branch, I am not yet ready to dedicated enough time on this |
execute many can handle different types now aswell and not only tuples.
This way it does not require the user to create a tuple to bind a single value:
currently this means it supports tuples and single values when only one value has to be bound, since these are the only types supported by VariadicBind right now