-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMhDatabses.py
70 lines (62 loc) · 1.88 KB
/
MhDatabses.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import pymysql
# 类 MhDatabases
# 作者:陶一丁
# 作用:提供数据库操作函数
# 最后修改时间:2019.8.22
class MhDatabases:
def __init__(self):
self.host = "139.217.130.233" # 微软Azure服务器IP
self.port = 3306
self.db = "macrohard" # 数据库名称
self.user = "root"
self.passwd = "macrohard"
self.charset = 'utf8'
# 函数 connection
# 作者:陶一丁
# 作用:数据库连接
# 最后修改时间:2019.8.22
def connection(self):
self.conn = pymysql.connect(host=self.host,
port=self.port,
db=self.db,
user=self.user,
passwd=self.passwd,
charset=self.charset)
self.cls = self.conn.cursor()
# 函数 free
# 作者:陶一丁
# 作用:释放数据库连接
# 最后修改时间:2019.8.22
def free(self):
self.cls.close()
self.conn.close()
# 函数 executeUpdate
# 作者:陶一丁
# 作用:数据库增删改
# 最后修改时间:2019.8.22
def executeUpdate(self, sql, param=[]):
try:
self.connection()
row = self.cls.execute(sql, param)
self.conn.commit()
except Exception as e:
print(e)
finally:
self.free()
return row
# 函数 executeUpdate
# 作者:陶一丁
# 作用:数据库查找
# 最后修改时间:2019.8.22
def executeQuery(self, sql, param=[]):
try:
self.connection()
self.cls.execute(sql, param)
result = self.cls.fetchall()
except Exception as e:
print(e)
finally:
self.free()
return result
# mhdb = MhDatabases()
# result = mhdb.executeQuery("select * from test")