Basically what the title says.
I am running a Modification System,
Process:
Menu:
Select Modify:
"What would you like to search by to Modify:"
System Code
System Name
System Abbreviation
Brings up a jtable, with all data with similar names.Code:String SysName = JOptionPane.showInputDialog(null, "What is the System Name?", "Modify System Definition: System Name", JOptionPane.QUESTION_MESSAGE);
String SQL = "SELECT * FROM `eossysdef` WHERE SysName LIKE '%"+SysName+"%';";
This is where I am at.
How do I either click a row and get it to send to a string or each cell to a string multiple smaller strings.
Because it will go to another Panel and fill in the TextBoxes to allow a person to modify and submit.

