Python连接MySQL数据库

一、配置好yum源之后安装MySQL、MySQLdb、mysql-devel。

yum -y install mysql-server MySQL-python mysql-devel

安装完成后在python环境下执行如下命令,没有输出则证明安装成功。

import MySQLdb

 

二、编写一个模拟用户登录的程序进一步加强学习。

代码思路:

从输入设备接收用户名和密码然后去库中查询,如果能匹配到则返回True允许登录,如果无法匹配则返回False拒绝登录。

#/usr/bin/env python
import MySQLdb

#mysql配置文件 dbconfig = { user: root, host: localhost, passwd: ‘‘, db: zhonggu, charset: utf8, } conn = MySQLdb.connect(**dbconfig) #连接mysql cursor = conn.cursor() def user_login(name,password): sql = "select * from user where name=%s and password=%s" #查询的SQL语句 if cursor.execute(sql,(name, password)): return True else: return False name = raw_input("Input your name: ") password = raw_input("Input your password: ") print user_login(name, password) cursor.close() conn.close()

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。