-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdbmanager.py
79 lines (54 loc) · 1.65 KB
/
dbmanager.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
71
72
73
74
##database manager
import sys
import os
curPath = os.path.abspath(os.path.dirname(__file__))
rootPath = os.path.split(curPath)[0]
sys.path.append(rootPath)
#Prevent posible package not found error
import sqlite3
sqlite_file = 'my_db.sqlite' #filename for database
class DatabaseManager:
def __init__(self):
self.__conn = sqlite3.connect(sqlite_file)
self.__cur = self.__conn.cursor()
self.create()
def create(self):
command = '''CREATE TABLE IF NOT EXISTS JOKES (
Comedian text,
Joke text,
Charlen integer,
Wordlen integer
)
'''
self.__cur.execute(command)
self.__conn.commit()
def execute(self, query: str):
"""execute sql query @code(command)
Arguments:
command {[str]} -- sql query we want to execute
"""
self.__cur.execute(query)
def fetch(self):
"""fetch once
Returns:
[tuple] -- tuple of first data that fits the query
"""
return self.__cur.fetchone()
def fetch_all(self):
"""fetch all answer that fits the latest query
Returns:
[list] -- list of tuples of data that fits the query
"""
return self.__cur.fetchall()
def commit(self):
"""commit changes
Returns:
[None] -- returns nothing
"""
return self.__conn.commit()
def close(self):
"""close the connection to the database
Returns:
[None] -- returns nothing
"""
return self.__conn.close()