Skip to content
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

cursor.executemany rejects INSERT statements with leading whitespaces #415

Closed
vhermecz opened this issue Jul 30, 2021 · 0 comments
Closed
Labels

Comments

@vhermecz
Copy link
Contributor

The regex for matching insert statements assumes the query starts with INSERT. This can be a problem with multiline strings.

Example:

sql = """
  INSERT INTO table1 (col1, col2)
  VALUES (:name, :age)
"""

This guy gets rejecte due to the whitespace in front of the INSERT keyword.

Possible solutions:

  • Extend RE with \s*
  • Call strip() on the executemany argument
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants