Latest Answer : Hibernate is used to intract with the database easily and the user need not learn SQL Querys.JDBC also intracts with database but user can should have knowledge of SQLÂ ...
Latest Answer : Hi, Hibernate has lots of us:1) We can use the SQL codes in application without writing the complex JDBC code.2) JDBC is Not portable whenever we use jdbc our sql codes are not potables for different database or we can say distrubted transaction. ...
Latest Answer : JDBC: Writing the programmes using JDBC Connection, the user has to take transactions demarcation and changes in the persistence layer (database) it's expensive to propagate the changes in the code , and developer has have the knowledge of database ...
Hai to all, i have got a problem related to Threads in java. In our application we are using some 40 threads (ie they are used to send the request and fetch the values of the parameters of a particular device )The problem is that some of the threads are going into unknown state (we can say threads are getting hanged) but all the threads has to be run continuously with timers.Our application is using solaris9.0.Is there chance of the OS causing the problem of thread hanging?kindly mail ur comments
Latest Answer : lazy property in hibernate is used to control when child/ren class(es) should be loaded, e.g., when a parent class is loaded and lazy property is true, the child entity is not loaded until an explicit call getChild() is invoked ...
What is the problem in getting the session object of hibernate directly in the action class of struts?
I am new to Hibernate.So can any one tell me how to develop a application using Hibernate in the Jedeveloper??
What is Persistent Base Class in Hibernate? Give me a example of one-to-many mapping using person and address in Hibernate.
How to access two tables through hibernate ? Can anybody guide us with complete code including the java codes and xml code ?