标签: python cursor
我正在尝试
title = "Title here" url = "http://www.mysite.com/url-goes-here" cursor.execute("""INSERT INTO `videos_justicevids` (`title`, `pageurl`) VALUES (%s, %s)""",(title, url))
我没有收到错误,但它没有插入数据库。
答案 0 :(得分:1)
你需要提交它。
connection.commit()