How to insert and call by row and column into sqlite3 python, great tutorial problem.
- by user291071
Lets say i have a simple array of x rows and y columns with corresponding values,
What is the best method to do 3 things?
How to insert, update a value at a specific row column? How to select a value for each row and column,
import sqlite3
con = sqlite3.connect('simple.db')
c = con.cursor()
c.execute('''create table simple (links text)''')…