python脚本中的变量经常会变动,所以考虑写到mysql里面
如何获取mysql里面数据作为参数,参考如下脚本:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import MySQLdb
# 打开数据库连接
db = MySQLdb.connect("3.12.5.1", "root", "root", "test", charset=‘utf8‘)
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# 使用execute方法执行sql语句
cursor.execute("select media_source_dir from app_configs a where a.ip_addr=‘172.0.3.96‘")
#使用fechone()获取一条数据
data = cursor.fetchone()
print "路径为:", data[0]
# 关闭数据库连接
db.close()
使用此方法即可获取数据库中数据作为参数,赋值给data变量。
原文地址:https://blog.51cto.com/weiruoyu/2359076
时间: 2024-10-09 05:06:16