Please use JavaFX :)
Write a JavaFX GUI program that views, inserts, and updates staff information stored in a database, as shown in the following figure. The view button displays a record with a specified ID. The Staff table is created as follows:
create table Staff (
id char(11) not null,
lastName varchar(15), not null,
firstName varchar(15),
mi char(1), not null,
address varchar(25),
city varchar(20),
state char(2),
telephone char(10),
email varchar(40),
primary key (id)
);