Pyodbc Is Not Updating Table
Basically I'm trying to update Column1_mbgl field data in Table1, all based in MS Access database. The script gets executed without any errors, but when the table is checked no upd
Solution 1:
You forgot to conn.commit()
after executing your UPDATE query. The Python database API specifies that connections open with "autocommit" off by default, so an explicit commit
is needed.
Post a Comment for "Pyodbc Is Not Updating Table"