python sql数据库连接错误和插入数据代码错误

时间:2019-05-20 18:58:58

标签: python database connection

以下代码是否有帮助?

我尝试了一些语法。

print("Content-Type: text/html")
print()

import cgi

print("<h1>Welcome to Python Web programming</h1>")
print("<hr/>")
print("<h2>Using Input Tags</h2>")


from=cgi.FieldStorage()

roll = from.getvalue("roll")
name =form.getvalue("name")

import mysql.connector

con=mysql.connector.connect
(user='',password='',host='localhost',database='kite')

cur=con.cursor()

sql="INSERT INTO customers (roll,name) VALUES (%s,%s)"
val=(roll,name)
cur.excute(sql,val)

con.commit()

cur.close()
con.close()
print("<h1>Record Inserted Succefully</h1>")

服务器错误!服务器遇到内部错误,无法完成您的请求。服务器过载或CGI脚本错误。

如果您认为这是服务器错误,请与网站管理员联系。

错误500本地主机Apache / 2.4.17(Win32)OpenSSL / 1.0.2d PHP / 5.6.20

0 个答案:

没有答案