Discuss about JSP implicit objects. Assume a database with the table TEACHER (ID, Name). Now using JDBC, execute the following SQL query:
select * from TEACHER;insert into TEACHER values (8, 'Ramesh');select name from TEACHER where ID = 9;This answer is restricted. Please login to view the answer of this question.
Login Now