In this section, you will learn about the db2 configuration in Hibernate.
Since Hibernate is independent of database, if you are using db2, then you need to change the hibernate.cfg.xml .
The hibernate.cfg.xml configuration file for the db2 is given below :
<?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <!-- Database connection settings --> <property name="connection.driver_class">com.ibm.db2.jcc.DB2Driver</property> <property name="connection.url">jdbc:db2://192.168.10.13:3306/anky</property> <property name="connection.username">user</property> <property name="connection.password">pass</property> <property name="connection.pool_size">1</property> <property name="dialect">org.hibernate.dialect.DB2Dialect</property> <property name="show_sql">true</property> <mapping class="net.roseindia.Student" /> <mapping class="net.roseindia.Course" /> </session-factory> </hibernate-configuration>
The description of the tags of the above configuration file is given below :
At last of you will be required to map the persistent class(POJO) file to the configuration.
|
Recommend the tutorial |
Ask Questions? Discuss: Hibernate db2
Post your Comment