Write a Java applet that views, inserts, and updates staff information stored in a table Staff in an Oracle Database. The View button displays a record with a specified ID. The Staff table is created with the SQL statement below.
Create table Staff (
id char(9) NOT NULL,
lastName VARCHAR2(15),
firstName VARCHAR2(15),
mi char(10),
address VARCHAR2(20),
city VARCHAR2(20),
state char(2),
telephone char(10),
email VARCHAR2(40),
PRIMARY KEY(id).