-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmysql_class.py
More file actions
147 lines (61 loc) · 1.72 KB
/
mysql_class.py
File metadata and controls
147 lines (61 loc) · 1.72 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import os.path
import pymysql
class mysql:
def __init__(self, db=None, cursor=None):
self.db = db;
self.cursor = cursor;
def __enter__(self):
return self
#file dir where file store host\n user\n password\n dbname\n
def connect(self):
file_name = "mysql_auth.txt"
if not os.path.isfile(file_name) :
return -1
try:
file_pointer = open(file_name,"r")
except:
return -1
host_str = file_pointer.readline().rstrip('\n').strip(' ')
user_str = file_pointer.readline().rstrip('\n').strip(' ')
token_str = file_pointer.readline().rstrip('\n').strip(' ')
dbname_str = file_pointer.readline().rstrip('\n').strip(' ')
file_pointer.close()
try:
self.db = pymysql.connect(host_str, user_str, token_str, dbname_str, use_unicode=True, charset="utf8")
self.cursor = self.db.cursor()
#cursor.execute('SET NAMES utf8;')
#cursor.execute('SET CHARACTER SET utf8;')
#cursor.execute('SET character_set_connection=utf8;')
except:
return -1
return 1
#drop old table if exist!! be careful when using it!!
def create_table(self, sql, table_name):
try:
drop_sql = "DROP TABLE IF EXISTS " + table_name
self.cursor.execute(drop_sql)
self.cursor.execute(sql)
except:
return -1
return 1
#insert, update, delete query
def cmd(self, sql):
try:
self.cursor.execute(sql)
self.db.commit()
except:
self.db.rollback()
return -1
return 1
#find query
def query(self, sql):
try:
self.cursor.execute(sql)
result = self.cursor.fetchall()
except:
result = -1
return result
def close(self):
self.db.close()
def __exit__(self, exc_type, exc_value, traceback):
self.db.close()