Question: do it in intellij and use oracle sql as database.. thanks Write a GUI application in Java that allows user to select employees by their



do it in intellij and use oracle sql as database.. thanks
Write a GUI application in Java that allows user to select employees by their department. - Include a label and a text field in your GUI application which allows users to enter the department value. - Include a button in your GUI application which user clicks to retrieve the employee(s) information from an Oracle table named Employees based on the department value. Here is the definition of the table: CREATE TABLE Employees ( employeeID char(9) NOT NULL, CREATE TABLE Employees ( employeeID char(9) NOT NULL, firstName varchar (20) NOT NULL, lastName varchar (20) NOT NULL, address varchar (30) NOT NULL, city varchar(30) NOT NULL, province char(2) NOT NULL, postalcode char(6) NOT NULL, department varchar (20) NOT NULL, PRIMARY KEY (employeeID) ) ; Populate the table with several rows as below: - The information should be displayed in a text area or table component which has scrolling abilities. If using a text area to display results, make sure to use " tt " and " n " to format the display. Use the most appropriate layout manager classes to implement the layout of this GUI
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
