Understanding Object-Relational Persistence
Understanding Object-Relational Persistence According to Wikipedia Persistence in computer science refers to the characteristic of data that outlives the execution of the program that created it....
View ArticleIntroducing and Integrating Hibernate
Hibernate provides two alternative configuration files: a standard Java properties file called hibernate.properties and an XML formatted file called hibernate.cfg.xml. If both the hibernate.properties...
View ArticleHibernate Architecture
Hibernate Architecture SessionFactory A threadsafe (immutable) cache of compiled mappings for a single database. A factory for Session and a client of ConnectionProvider. Might hold an optional...
View ArticleJDBC in Java
JDBC JDBC is a Java API (set of classes and interfaces) for executing database (SQL) statements in a Java application. Provides cross-vendor connectivity and data access across RDBMS from different...
View Article