How do you create UserTransaction Object? How do you
rollback a transaction in a method?
Answer / gnani
the user transactin object created using session
Transaction tx=session.beginTransaction();
the rollback is:
tx.rollback();
| Is This Answer Correct ? | 2 Yes | 9 No |
2. Write a interface "Car" with the following methods void setName(String) String getName() void setColor(String) String getColor() void setModel(long) long getModel()
What is the difference between Eclipse and MyEclipse?
how to deploy the web application ?
lll
what is hibernate ceteria ?
What is iterator in the java collections framework? : java collections
What is Visual Source Safe(source control Tool)?
what protocols does JNDI provide an interface to?
I have include a jsp page by using <jsp:include page="/.../xyz.jsp"/> The thing is that the xyz.jsp page has its submit button.When i click on that button the whole main page get refreshed.But i want to refresh only the xyz.jsp page.How could i achive it so that i can only refresh the xyz.jsp not the main page page?
Hi Friends , am newbie to ajax. For example just consider one account registration - A form contains 8 text fields with submit button. In this form second texbox contains "username " . On right side of text box there is a label box . On clilck action i need to determine user is available or not. Is it possible on clicking label or should i click submit button.
what are callback methods?
What is the Spring2.5 MVC Navigation flow?