Good day everyone, I'm trying to save an inputted data using JTextfield in JAVA GUI into MySQL database.
But when i pressed the save button nothing happens. I want to show you all my work right now.
Please try to help me, Thank you in advance!

Code:
	if(e.getSource().equals(save))	{
	
	String ID=custid.getText();
	int custid=Integer.parseInt(ID);
	
	String fname=CustFName.getText();
	String lname=CustLName.getText();
...