InterviewSolution
Saved Bookmarks
| 1. |
Explain Sql Tags? |
|
Answer» SQL tags : JSTL SQL Tags: JSTL SQL Tags PROVIDE support for interaction with relational databases such as Oracle, MySql etc. USING JSTL SQL tags we can run database queries, we include these JSTL tags in JSP with below syntax: <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" PREFIX="sql" %> SQL tags : JSTL SQL Tags: JSTL SQL Tags provide support for interaction with relational databases such as Oracle, MySql etc. Using JSTL SQL tags we can run database queries, we include these JSTL tags in JSP with below syntax: <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %> |
|