data = conn.execute("SELECT cost from test where name like 'fish'").fetchall()
Also, chances are, you don’t need to use a cursor for whatever you are doing.
solved Python and SQlite [closed]
data = conn.execute("SELECT cost from test where name like 'fish'").fetchall()
Also, chances are, you don’t need to use a cursor for whatever you are doing.
solved Python and SQlite [closed]