Question
Northwind Database Query Tool Create a JavaFX program to allow a user to query the Northwind database. You should be able to perform the following
Northwind Database Query Tool
Create a JavaFX program to allow a user to query the Northwind database. You should be able to perform the following functionality using the program: 1. Print order total (not including the freight cost) for a given order number The program will ask the user for an order number, and then print out the total for all products in the order, taking into account quantities and discounts. (All computations should be done within the SQL query). 2. Print all order details for a given order number The program will ask the user for an order number, and then print the order date, freight charge, and all products and their quantity, unit price, and discount for the order. 3. Print the names and cities of all customers in a given state The program will ask the user for a state, and then print out the names and cities of all customers in this state in order by city. 4. Print the names of all employees who have a birthday in a given year The program will ask the user for a year, and then print out the first and last names (in alphabetical order by last name) of all employees who were born during that year. Use effective use of JavaFX menus and menu bar as well as display of result-sets or row sets using scrollable table views. Put enough comments.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started