Configuration pour SQL Server
Bonjour,
Je souhaiterais parvenir à lier la BDD Northwind sous SQL Server avec Hibernate mais je n'y parviens pas.
Voila mon fichier de configuration :
Code:
1 2 3 4 5 6 7
| <property name = "hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name = "hibernate.connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property>
<property name = "hibernate.connection.url">jdbc:sqlserver://localhost:1433;databaseName=Northwind;instanceName=SQLEXPRESS;</property>
<property name = "hibernate.connection.username">sa</property>
<property name="show_sql">true</property>
<property name="hibernate.hbm2ddl.auto">update</property>
<property name="transaction.flush_before_completion">true</property> |
Quelqu'un saurait-il m'indiquer comment procéder ?
Merci d'avance pour votre aide.