-
Notifications
You must be signed in to change notification settings - Fork 46
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
bindparam does not work #104
Comments
It seems that args are lost here: |
im not really sure how to fix/handle this one. Sqlalchemy has an "execute many" function in which it strings together a bunch of queries in one transaction for. If it detects |
Hello there, am currently stuck on the same issue. Just curious, can this be achieved using the explicit executemany somehow? |
Turns out that it does using $1, $2, etc style params and a list of tuples |
Perhaps you could advice some fast fix or workaround for that? I need update for many different rows with different values. Previously used bindparam for that.
The text was updated successfully, but these errors were encountered: