Python连接mysql数据库和关闭数据库的方法
1 import pymysql
2 def get_conn():
3 """
4 :return: 连接,游标
5 """
6 # 创建连接
7 conn = pymysql.connect(host="hadoop102",
8 user="root",
9 password="000429",
10 db="company",
11 charset="utf8")
12 # 创建游标
13 cursor = conn.cursor() # 执行完毕返回的结果集默认以元组显示
14 return conn, cursor
15
16 def close_conn(conn, cursor):
17 if cursor:
18 cursor.close()
19 if conn:
20 conn.close()
21 """
22 ------------------------------------------------------------------------------------
23 """
24 def query(sql,*args):
25 """
26 通用封装查询
27 :param sql:
28 :param args:
29 :return:返回查询结果 ((),())
30 """
31 conn , cursor= get_conn()
32 print(sql)
33 cursor.execute(sql)
34 res = cursor.fetchall()
35 close_conn(conn , cursor)
36 return res
37 """
38 ------------------------------------------------------------------------------------
39 """
好看请赞,养成习惯:) 本文来自博客园,作者:靠谱杨, 转载请注明原文链接:https://www.cnblogs.com/rainbow-1/p/15370360.html
欢迎来我的51CTO博客主页踩一踩 我的51CTO博客
文章中的公众号名称可能有误,请统一搜索:靠谱杨的秘密基地