2007-01-15 19:08
2007-01-15 19:12
2007-01-15 23:05
2007-01-16 08:57
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">com.microsoft.jdbc.sqlserver.SQLServerDriver</property>
<property name="hibernate.connection.url">jdbc:microsoft:sqlserver://localhost:1433;databasename=pubs</property>
<property name="hibernate.connection.username">username</property>
<property name="hibernate.connection.password">pwd</property>
<property name="hibernate.connection.pool_size">100</property>
<property name="show_sql">true</property>
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
<!-- Mapping files -->
<mapping resource="jobs.hbm.xml"/>
</session-factory>
</hibernate-configuration>

2007-01-16 09:01
2007-01-16 09:16

2007-01-16 09:31

2007-01-16 12:07

2007-01-16 13:50
2007-01-16 16:21