First of all in the code you have posted you write this:
String queryString = "INSERT INTO lesson1(Name,Description)" + "VALUES (?, ?)";
And at the error:
String queryString = "INSERT INTO lesson1(Name,Description)" + "VALUES ("?", "?")";
So which one is deployed? Because the first is correct. Also I believe you are missing a submit button or I didn't look closely
Also I trust that the MyStatement extends the PreparedStatement.
And one last thing when you solve your problem, delete the entire file and start all over. Because you do not write java inside jsp apart for the minimum needed to display the data (a for loop) and do minor calculations. Database access is not minor calculations.
Have the form submit to a servlet, do all the calculations there: Open connection, insert values and then according to the results you will direct to the appropriate page.
Your jsp should have only the form and an if statement that will determine whether to display any messages or not depending on the results. But the actions will take place in the servlet where you will get the result and send it to the jsp.
In order to accomplish the above I strongly suggest to read the post at the top of this forum. It has everything you will need.