python 蟒蛇操作数据库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 蟒蛇操作数据库相关的知识,希望对你有一定的参考价值。
#coding:utf-8
"""
@project: RCCheker
@file: DatabaseController.py
@author: Boris Hou
@time: 2018-05-25 15:43:58
"""
import pymysql
def mysqlSelect(sql_line):
db = pymysql.connect(host='sh-cdb-gsye4ky5.sql.tencentcdb.com',port=63732,user='root',passwd='WBxOwV7H4!$',db='loan')
cursor = db.cursor()
cursor.execute(sql_line)
data = cursor.fetchone()
db.close()
if __name__ == '__main__':
mysqlSelect(sql_line="SELECT left_field from new_rule_formula where rule_id = "+"47;")
以上是关于python 蟒蛇操作数据库的主要内容,如果未能解决你的问题,请参考以下文章
python 蟒蛇字符串操作
python 蟒蛇文件操作
python 蟒蛇时间操作
python 蟒蛇操作的Redis
python 蟒蛇日期操作
python 如何在Python中中断长时间运行的操作。 #蟒蛇