JSTL SQL Transaction
I have setup a datasource in my back end JSTL page as follows:
<sql:setDataSource dataSource="jdbc/sekunjaloDS" var="xxx"/>
<sql:transaction dataSource="${xxx}">
<sql:query var="rs">
select * from table
</sql:query>
</sql:transaction>
my datasource points to a pool setup in JBOSS.
i want to know does the transaction auto. close itself, as there isnt any explicit tags i know of to close my connection.
My sectiond queston is, does JSTL 'under the hood' use prepaired statements?

