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:
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).
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.
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.
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.
I expect to see effective use of JavaFX menus and menu bar as well as display of result-sets or row sets using scrollable table views.