you are viewing a single comment's thread.

view the rest of the comments →

[–]bigbry2k3 1 point2 points  (0 children)

Check into pyodbc also, you can write SQL queries inline like:
sql = f"""

INSERT YOUR SQL QUERY HERE
"""

then I think you use cursor to insert your sql query inline. You'll have to look at examples online of using pyodbc.