Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Assignment 4: Database Application Development The Northwind database created by Microsoft contains the sales data for a fictitious company called Northwind Traders, which imports and

image text in transcribedimage text in transcribedimage text in transcribed

Assignment 4: Database Application Development The Northwind database created by Microsoft contains the sales data for a fictitious company called Northwind Traders, which imports and exports specialty foods from around the world. Here is the schema of the database: Products (ProductID, ProductName, SupplierlD, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsonOrder, Reorderlevel, Discontinued); Suppliers (SupplierlD, Company Name, Contact Name, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage); Categories (CategoryID, CategoryName, Description, Picture); Orders (OrderID, CustomerID, Employeeld, Order Date, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry); Order_details (ID, OrderID, ProductID, UnitPrice, Quantity, Discount); Customers (CustomerID, Company Name, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax); Employees (Employeeld, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Photo, Notes, ReportsTo); Shippers (ShipperlD, Company Name, Phone); Run SQL script northwind.sql to create the above schema and load sample data in MySQL. This assignment lets you exercise on database application development using a programming language of your choice (C, Java, or PHP). Write an interactive text-based program. It repeatedly gives the user a menu of options to choose from, then carry out their request, until he/she finally choose the exit option. Your program should take care of all SQL queries with proper error/exception handling. Your program should also have proper transaction support. Your program should interact using plain text only. To make compiling and grading easier, do not include graphics or any other fancy interface. Your top menu (and the tasks you are asked to implement) includes the following: Assignment 4: Database Application Development The Northwind database created by Microsoft contains the sales data for a fictitious company called Northwind Traders, which imports and exports specialty foods from around the world. Here is the schema of the database: Products (ProductID, ProductName, SupplierlD, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsonOrder, Reorderlevel, Discontinued); Suppliers (SupplierlD, Company Name, Contact Name, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax, HomePage); Categories (CategoryID, CategoryName, Description, Picture); Orders (OrderID, CustomerID, Employeeld, Order Date, RequiredDate, ShippedDate, ShipVia, Freight, ShipName, ShipAddress, ShipCity, ShipRegion, ShipPostalCode, ShipCountry); Order_details (ID, OrderID, ProductID, UnitPrice, Quantity, Discount); Customers (CustomerID, Company Name, ContactName, ContactTitle, Address, City, Region, PostalCode, Country, Phone, Fax); Employees (Employeeld, LastName, FirstName, Title, TitleOfCourtesy, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone, Extension, Photo, Notes, ReportsTo); Shippers (ShipperlD, Company Name, Phone); Run SQL script northwind.sql to create the above schema and load sample data in MySQL. This assignment lets you exercise on database application development using a programming language of your choice (C, Java, or PHP). Write an interactive text-based program. It repeatedly gives the user a menu of options to choose from, then carry out their request, until he/she finally choose the exit option. Your program should take care of all SQL queries with proper error/exception handling. Your program should also have proper transaction support. Your program should interact using plain text only. To make compiling and grading easier, do not include graphics or any other fancy interface. Your top menu (and the tasks you are asked to implement) includes the following

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Select Healthcare Classification Systems And Databases

Authors: Katherine S. Rowell, Ann Cutrell

1st Edition

0615909760, 978-0615909769

More Books

Students also viewed these Databases questions

Question

Define Decision making

Answered: 1 week ago

Question

What are the major social responsibilities of business managers ?

Answered: 1 week ago

Question

What are the skills of management ?

Answered: 1 week ago

Question

Do you think the banquet is a ritual? Why or why not?

Answered: 1 week ago

Question

How can speakers enhance their credibility?

Answered: 1 week ago