Is it possible for me to take data stored in a sqlite3 table and use it as a Python variable? I\'m looking for something that might be similar to this pseudo-code:
To read a single value from a table, use a SELECT query that returns a result with a single row and a single column:
for row in cursor.execute("SELECT MyColumn FROM MyTable WHERE ID = ?", [123]): variable = row[0] break else: variable = 0 # not found