简体   繁体   English

检查用户输入的用户名和密码在MYSQL数据库中是否存在

[英]Checking whether user entered username and password exists in MYSQL database

Im new to python and I am creating a program that checks whether desired user entered username and password exists in database. 我是python的新手,我正在创建一个程序来检查所需用户输入的用户名和密码是否存在于数据库中。 Here is the code: 这是代码:

 import mysql.connector
 class data:
 def __init__(self):

    self.usernam = input("Enter user name: ")
    self.password= input("Enter Password: ")

 a=data()
 conn = mysql.connector.connect(host='localhost',user='root',passwd='root',database='user')


 loadname= ("select username from user where username='%s'")
 mycursor=conn.cursor()
 mycursor.execute(a.usernam, loadname)
 usercheck=mycursor.fetchone()
 loadpass= ("select pass from user where pass ='%s'")
 mycursor2=conncursor()
 mycursor2.execute(a.password,loadpass)
 passcheck=mycursor2.fetchone()


 if a.username == usercheck and a.password == passcheck:
     print ("pass")

 else:
     print ("sorry")
 conn.commit()
 conn.close()

Im getting the following errors: 我收到以下错误:

   Traceback (most recent call last):
     File "C:\Users\HP\Desktop\2nd.py", line 16, in <module>
     mycursor.execute(a.usernam, loadname)
     File "C:\Python34\lib\site-packages\mysql\connector\cursor.py", line                                 507, in execute
     self._handle_result(self._connection.cmd_query(stmt))
     File "C:\Python34\lib\site-packages\mysql\connector\connection.py", line 722, in cmd_query
     result = self._handle_result(self._send_cmd(ServerCmd.QUERY, query))
     File "C:\Python34\lib\site-packages\mysql\connector\connection.py", line 640, in _handle_result
      raise errors.get_exception(packet)
     mysql.connector.errors.ProgrammingError: 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'asaa' at line 1
mycursor.execute( loadname,a.username)

the query first then the args ... 首先查询,然后是参数...

I would strongly recommend you immediatly switch to an ORM like sqlalchemy 我强烈建议您立即切换到像sqlalchemy这样的ORM

i don't know "mysql.connector" but if it work as MySQLdb, it should be something along the lines: 我不知道“ mysql.connector”,但如果它作为MySQLdb工作,则应该遵循以下原则:

mycursor=conn.cursor()
mycursor.execute("select username from user where username=%s", a.username)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM