我的配置是这样的:
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
<property name="dialect">
NHibernate.Dialect.SybaseASE15Dialect
</property>
<property name="connection.driver_class">
NHibernate.Driver.SybaseAseClientDriver
</property>
<property name="connection.connection_string">
********
</property>
</session-factory>
</hibernate-configuration>
我收到此异常:无法在创建配置时从NHibernate.Driver.SybaseAseClientDriver创建驱动程序。 有人可以帮我解决这个问题吗?
答案 0 :(得分:0)
在我将驱动程序更改为OleDbDriver后,它对我有用。
<property name="connection.driver_class">
NHibernate.Driver.OleDbDriver
</property>