我有一个存储python列表的SQL数据库。目前我将列表转换为字符串,然后将其插入数据库(使用sqlite3),即
foo = [1,2,3]
foo = str(foo)
#Establish connection with database code here and get cursor 'cur'
cur.execute("INSERT INTO Table VALUES(?, ?)", (uniqueKey, foo,))
首先将我的列表转换为字符串似乎很奇怪,有没有更好的方法来做到这一点?