首页 > 代码库 > python mysql模块
python mysql模块
#!/usr/bin/python
import MySQLdb
def new_mail_mysql(ak):
print ak
conn=MySQLdb.connect(host=‘m3306.sae.sina.com.cn‘,user=‘sae_ol‘,passwd=‘7b149edb22ae7526‘,db=‘sae‘,port=3306)
cur=conn.cursor()
sql="select name from app where accesskey=‘%s‘"%ak
cur.execute(sql)
app_name=cur.fetchall()
return app_name
cur.close()
conn.close()
if __name__ == ‘__main__‘:
ak=new_mail_mysql(‘4yywo5lm02‘)
print ak
本文出自 “expect批量同步数据” 博客,请务必保留此出处http://4249964.blog.51cto.com/4239964/1433462
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。