Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 1.22 KB

README.md

File metadata and controls

18 lines (13 loc) · 1.22 KB

Team members:
Honglin Chen, Jinming Nian

Note that the table "StoreItems" stores the general info about all items in the store, it specifies if the item is a "Comic Book" or "Movie". Whereas "Item" stores specific item info. Moreover, results of "computeTotal" is not directly shown in the demo, but it is called inside "ShowItemOrders"

All constraints in 1.1 are fully implemented

  • a. custType constraints are implemented in Customer table creation in Table.sql
  • b. email has the constraint "UNIQUE NOT NULL" during table creation.
  • c. This is implemented in StoreItems creation as well as CreateOrderLineItem.
  • d. This is enforced in CreateOrderLineItem.
  • e. This is enforced in SetShippingDate and implemented in CustOrder table creation. Orders will be created without a shipping date, we think it is appropriate to add shipping date by using "SetShippingDate" after the order is successfully made.
  • f. This is implemented in ShippingFee_Trigger.

GUI Overview GUI_Overview1 GUI_Overview2