作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我几乎尝试了所有方法来使我的第一个 Flask 任务在 cloud9 上运行,但仍然给我这个错误
cursor.execute('''INSERT INTO studentmaster
(Student_Id,Student_FirstName,Student_LastName,
Course_Id,Gender,Residential_Address,
PhoneNo,Email,Password)
VALUES (%s,%s,%s,%s,%s,%s,%s)''',
(stid,firstname, lastname, coursename, gender, address,
phone, email,password))
这是我的应用程序的链接 https://ide.c9.io/hunteelar/studentregistration#openfile-README.md
最佳答案
表名中有 9 列,值中有 9 个变量,但值中只有 7 %s (%s......%s)
cursor.execute('INSERT INTO studentmaster
(Student_Id,Student_FirstName,Student_LastName,Course_Id,Gender,Residential_Address,PhoneNo,Email,Password)
VALUES (%s,%s,%s,%s,%s,%s,%s)',
(stid,firstname, lastname, coursename, gender, address,phone, email,password))
关于python - Flask mysql 查询 = 查询% self._escape_args(args, conn) TypeError : not all arguments converted during string formatting,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43158988/
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我是一名优秀的程序员,十分优秀!