No se si solucionastes tu problema pero espero ayudarte
String sSQL = "insert into alumno(Nombre, Edad, NotasFinales, Sexo) values(?,?,?,?)";
PreparedStatement pst = null;
try {
pst = (PreparedStatement) c.prepareStatement(sSQL);
pst.setString(1,s1);
pst.setString(2,s2);
pst.setString(3,s3);
pst.setString(4,s4);
pst.executeUpdate();
String sSQL = "insert into alumno(Nombre, Edad, NotasFinales, Sexo) values(?,?,?,?)";
PreparedStatement pst = null;
try {
pst = (PreparedStatement) c.prepareStatement(sSQL);
pst.setString(1,s1);
pst.setString(2,s2);
pst.setString(3,s3);
pst.setString(4,s4);
pst.executeUpdate();