//Assignment No:3 Set A a) Create a PROJECT table with fields project_id, Project_name, Project_description, Project_Status. etc. Insert values in the table. Display all the details of the PROJECT table in a tabular format on the screen.(using swing). CODE 👇 package project; import java.sql.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.util.*; class Project extends JFrame implements ActionListener { JLabel l1,l2,l3,l4; JTextField t1,t2,t3,t4; JButton b1,b2,b3; String sql; JPanel p,p1; Connection con; PreparedStatement ps; JTable t; ...