amaramar wrote:
Hello,
I tried to use Hibernate tools (org.hibernate.eclipse_3.1.0.beta4 ).
I generate a hibernate.cfg.xml file as follows:
<?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 name="Lambda">
<property name="hibernate.connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property>
<property name="hibernate.connection.password">megaouel</property>
<property name="hibernate.connection.url">jdbc:microsoft:sqlserver://LONDON\SQLEXPRESS;DatabaseName=CO</property>
Your problem is that jdbc:microsoft:sqlserver has changed to jdbc:sqlserver in 2005.
christos