Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在努力
title = "Title here" url = "http://www.mysite.com/url-goes-here" cursor.execute("""INSERT INTO `videos_justicevids` (`title`, `pageurl`) VALUES (%s, %s)""",(title, url))
我没有收到错误,但它没有插入数据库。
你需要提交它。
connection.commit()