i am moving my app from oracle to sql server 2000 (one customer user oracle and another sql server) and i search the docs at
http://www.hibernate.org/hib_docs/reference/html/session-configuration.html#session-configuration-s5-1 and it tells me to use
net.sf.hibernate.dialect.SQLServerDialect as the dialect. i made the other changes to my hibernate.properties file and started the app (runs in tomcat 4.x). i was suprised to find that hibernate didn't seem to connect to my DB. to make a log debug story short, i did a search and found at
http://cvs.sourceforge.net/viewcvs.py/hibernate/Hibernate2/src/hibernate.properties?rev=1.19 a properties setting of
hibernate.dialect net.sf.hibernate.dialect.SybaseDialect as the sql server dialect. i changed the dialects and reloaded the app and it worked (connected to the DB). so what dialect should sql server users be using? seems the docs are not clear on which one.
as a side not, hibernate documentation is some of the best out there, i am not knocking the hibernate team effort, i just want to be sure we all have the right info.