-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackend.py
39 lines (30 loc) · 1.26 KB
/
Backend.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
import sqlite3
class Database:
def __init__(self, db):
self.conn = sqlite3.connect(db)
self.cur = self.conn.cursor()
self.cur.execute(
"CREATE TABLE IF NOT EXISTS book (id integer PRIMARY KEY, title text, author text, year integer, isbn integ"
"er)")
self.conn.commit()
def insert(self, title, author, year, isbn):
self.cur.execute("INSERT INTO book VALUES (NULL,?,?,?,?)", (title, author, year, isbn))
self.conn.commit()
def view(self):
self.cur.execute("SELECT * FROM book")
rows = self.cur.fetchall()
return rows
def search(self, title="", author="", year="", isbn=""):
self.cur.execute("SELECT * FROM book WHERE title=? OR author=? OR year=? OR isbn=?",
(title, author, year, isbn))
rows = self.cur.fetchall()
return rows
def delete(self, id):
self.cur.execute("DELETE FROM book WHERE id=?", (id,))
self.conn.commit()
def update(self, id, title, author, year, isbn):
self.cur.execute("UPDATE book SET title=?, author=?, year=?, isbn=? WHERE id=?",
(title, author, year, isbn, id))
self.conn.commit()
def __del__(self):
self.conn.close()