Heya guys,
I am trying to make a desktop application for my assignment. I have to design an application that will have a JTable, JTextField and Buttons. I am done the GUI part. The input that user enters into the table should get stored into the database using an "insert" button(using JDBC). I know how to connect to the database and how to insert stuff into it. But I do not understand how can i edit my table and after the table is edited. The database should update. Also, how can i send string objects(input from the JTextField) into the database using a query?
P.S. I am using model for table
final DefaultTableModel model = new DefaultTableModel(data, col);
final JTable table = new JTable(model);
Thanks :)