So suppose I made an sqlite3 database in which I made a table
c.execute("CREATE TABLE tablnam(thing TEXT, thing2 TEXT, thing3 TEXT)")
then I made a list
list = ["a","b","c"]
How would I go about inserting that one list into tablnam in just one row. I've tried
c.execute("insert into this values(?)",list)
but it returns
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: parameters are of unsupported type
so to clarify for those who don't understand: I want to insert a lists values, into ONE row in an sqlite3 table in python thx!