-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhibernate.cfg.xml
executable file
·17 lines (17 loc) · 1.05 KB
/
hibernate.cfg.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">org.firebirdsql.jdbc.FBDriver</property>
<property name="hibernate.connection.url">jdbc:firebirdsql://localhost:3050/d:/Battery_Shop/Database/battery_shop.gdb </property>
<property name="hibernate.connection.username">SYSDBA</property>
<property name="hibernate.connection.password">masterkey</property>
<property name="hibernate.connection.pool_size">1</property>
<property name= "hibernate.cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<property name="hibernate.dialect">org.hibernate.dialect.FirebirdDialect</property>
<property name="hibernate.show_sql">true</property>
<property name="hbm2ddl.auto">update</property>
<property name="current_session_context_class">thread</property>
</session-factory>
</hibernate-configuration>