Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 1.2
Mapping documents:
Code between sessionFactory.openSession() and session.close():
public void OpenSession()
{
if (_sessionCreatedLocally && (_session == null || !_session.IsOpen))
{
_session = PersistenceManager.NHFactory.OpenSession();
}
}
Full stack trace of any exception that occurs:
Name and version of the database you are using:
SQL Server 2005
The generated SQL (show_sql=true):
Debug level Hibernate log excerpt:
Problems with Session and transaction handling?
Read this:
http://hibernate.org/42.html
Yes..
I am using LAZY = true in my HBM Mapping files, inorder to improve the performance of my WIN Application.
I face a scenario, where I want my session to be Refreshed or Reconnected based on any Changes in the Database.
Is there any way to capture the changes in Database ?
How to approach this.
Pass me your ideas.
Thanks in ADVANCE.
Cheers
Sudhagar.S