Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 590 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 590 Bytes

order-managment-demo

This is a demo program for the Product Order management.

Tables:

Category: (ID, NAME) Product: (ID, CATID, PRICE) Orders: (ID, PRDID, CNT, PHONE)

Web UI:

The web page shows the lists of Category, Product and Orders, and provide the links to add/update/delete the corresponding records.

Database creation and initialization

The database structure and initial data are created when the server starts up.

Limitations:

  1. Input data validation (type, length) is omitted.
  2. Data integrity validation is omitted.