123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import psycopg2
- class DataConsumer():
- """To query database"""
- def __init__(self, credentials):
- self.conn = psycopg2.connect(credentials)
- def __del__(self):
- self.conn.close()
- def getProductSet(self):
- cursor = self.conn.cursor()
- cursor.execute("SELECT * from Product")
- rows = cursor.fetchall()
- cursor.close()
- return rows
- def addProduct(self, name):
- cursor = self.conn.cursor()
- cursor.execute("INSERT INTO Product (pro_name) VALUES (%s)", (name,))
- cursor.close()
- def getCompanyNames(self):
- cursor = self.conn.cursor()
- cursor.execute("SELECT com_name FROM Company")
- ans = []
- for t in cursor:
- ans.append(t[0])
- cursor.close()
- return ans
- def getOrdersOfCompany(self, company):
- cursor = self.conn.cursor()
- cursor.execute("SELECT ord_id, ord_date FROM bookorder NATURAL JOIN company WHERE com_name = %s", (company,))
- rows = cursor.fetchall()
- cursor.close()
- return rows
- def getItemsOfOrder(self, bookId):
- cursor = self.conn.cursor()
- cursor.execute("SELECT ori_id, ori_quantity, pro_name, ori_deliveryduedate FROM ordereditem NATURAL JOIN product WHERE ord_id = %s", (bookId,))
- rows = cursor.fetchall()
- cursor.close()
- return rows
-
- def commit(self):
- """Make the changes to the database persistent"""
- self.conn.commit()
|