2

我正在努力

title = "Title here"
url = "http://www.mysite.com/url-goes-here"

cursor.execute("""INSERT INTO `videos_justicevids` (`title`, `pageurl`) VALUES (%s, %s)""",(title, url))

我没有收到错误,但它没有插入数据库。

4

1 回答 1

1

你需要提交它。

connection.commit()
于 2012-10-20T02:08:52.347 回答