I wish to update a column in a Spatialite table from a dictionary object using the pysqlite module in Python 2.7. I am accustomed to executing this operation on ordinary, i.e., non-spatial SQLite database thusly:
from pysqlite2 import dbapi2 as sqlitecon = sqlite.connect("db.sqlite")cur =...