Go Back   TechArena Community > Software > Software Development
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: , , , , , ,

Sponsored Links



Don't about Hibernate Framework of java

Software Development


Reply
 
Thread Tools Search this Thread
  #1  
Old 23-01-2010
Member
 
Join Date: Dec 2009
Posts: 68
Don't about Hibernate Framework of java

Hello Friends,

I am IT student learning 'Advanced Java Programming'. I have sound knowledge about the most of the basic concept of Advanced Java Programming. But one concept of seems to be more tough for me and it 'Hibernate Framework'. I am not getting this concept. I wonder if you are able to provide me some details about Hibernate Framework of java. I would greatly appreciate you any help over this.
Reply With Quote
  #2  
Old 23-01-2010
opaper's Avatar
Member
 
Join Date: May 2008
Posts: 2,362
Re: Don't about Hibernate Framework of java

Hibernate Framework is basically used for the mapping from Java classes to the tables of database. Hibernate Framework is nothing but an ORM library of Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Primary feature of Hibernate Framework is to offer mapping from classes to database tables. Hibernate solves object-relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions.
Reply With Quote
  #3  
Old 23-01-2010
MindSpace's Avatar
Member
 
Join Date: Feb 2008
Posts: 1,832
Re: Don't about Hibernate Framework of java

Hibernate Framework of the java doesn't needs java developers to implement proprietary interfaces or extend proprietary base classes in order for classes to be made persistent. Hibernate is a Java framework that provides mapping mechanisms of object to define how Java objects are stored, updated, deleted, and retrieved. In addition, Hibernate offers query and retrieval services that can optimize development efforts within SQL and JDBC environments. Ultimately, Hibernate reduces the effort needed to convert between relational database result-sets and graphs of Java objects.
Reply With Quote
  #4  
Old 23-01-2010
Modifier's Avatar
Member
 
Join Date: Jan 2008
Posts: 1,502
Re: Don't about Hibernate Framework of java

Hibernate Framework of java is a ultra-high performance as well as powerful object persistence & query service for Java. Hibernate Framework of java enables developing classes which comprises Java collections framework, inheritance as well as composition. Hibernate Framework enables us to express queries in its own portable SQL extension (HQL), as well as in native SQL, or with an object-oriented Criteria and Example API.
Reply With Quote
  #5  
Old 23-01-2010
Praetor's Avatar
Member
 
Join Date: Apr 2008
Posts: 1,937
Re: Don't about Hibernate Framework of java

Hi friend,

Hibernate Framework of java define persistent classes which are "mapped" to the database tables. Following is the example of persistent class of java:
Quote:
public class Message1
{
private Long id1;
private String text1;
private Message nextMessage1;
private Message() {}
public Message(String text1) {
this.text1 = text1;
}
public Long getId1() {
return id1;
}
private void setId1(Long id1) {
this.id1 = id1;
}
public String getText1() {
return text1;
}
public void setText(String text1) {
this.text1 = text1;
}
public Message getNextMessage1() {
return nextMessage1;
}
public void setNextMessage1(Message nextMessage1) {
this.nextMessage1 = nextMessage1;
}
}
Reply With Quote
  #6  
Old 23-01-2010
Member
 
Join Date: May 2008
Posts: 1,990
Re: Don't about Hibernate Framework of java

Hi,

Hibernate Framework must peacefully coexist in various deployment environments, from application servers to standalone applications. Hibernate also allows you to express queries using native SQL or Java-based Criteria and Example queries. We refer to these as managed and non-managed environments, respectively. An application server is an example of a managed environment, providing services to hosted applications like connection pools and transaction management.
Reply With Quote
Reply

  TechArena Community > Software > Software Development


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "Don't about Hibernate Framework of java"
Thread Thread Starter Forum Replies Last Post
.NET Framework 3.5 Service Pack 1 and .NET Framework 3.5 Family Update (KB951847) x86 John Server Update Service 15 05-05-2011 12:13 PM
Hibernate with Java Persistence API Valliy Software Development 5 18-09-2010 11:06 PM
Question to Hibernate in Java Development Taarank Software Development 5 29-07-2010 02:51 AM
What is Java Collection Framework? Truster Software Development 5 29-01-2010 10:43 AM
Microsoft .NET Framework 3.5 Service Pack 1 and .NET Framework 3.5 Family Update (KB951847) x64 Installation problem BP Windows Update 8 16-03-2009 09:29 AM


All times are GMT +5.5. The time now is 11:34 AM.