python连接MySQL源码

import MySQLdb
conn=MySQLdb.connect(host="localhost",user="用户名,一般为root",passwd="密码:****",db="数据库名字")
cur=conn.cursor()//获得一个cursor
print cur.execute("select * from  s")//execute返回括号内返回值的数目
print cur.fetchall() //展示出表s中的数据项



你可能感兴趣的:(Python)