如何从列表中添加数据库?

时间:2016-11-17 23:34:28

标签: python sqlite

我正在尝试从整数列表中创建SQLITE中的列,但会收到以下错误:

lastRole

这是我的代码:

$this->with('lastRole')->all();

提前致谢! :)

1 个答案:

答案 0 :(得分:2)

如果我理解正确,你想循环列表,而不是将整个列表插入一行

for l in list1:
    c.execute("INSERT INTO tell(listItem) VALUES (?)",
      (l, ))
c.close() 
conn.commit()

你的CREATE TABLE语句应该创建tell,因为table是一个保留字,而且是你要插入的内容