Gizmo
Gizmo

Reputation: 941

What versions of firebird are supported by nHibernate?

I would like to use fluent-nHibernate for different databases of firebird with different versions. I found some information on the jboss website but nothing at http://nhibernate.info/

Which versions are supported and where do i find things like this?

Upvotes: 0

Views: 860

Answers (1)

Guillem Vicens
Guillem Vicens

Reputation: 3996

Since fluent-nHibernate sits on top of nHibernate you only need this one to support Firebird. If you check the source for the fluent-nHibernate Firebird configuration you will see there is no reference to any Firebird version.

Said this, according to this link at jBoss, Firebird is supported since version 1.5.3, though version 2.1 is strongly recommended in nHibernate. The same link gives also advice on how to configure your application.

This link also says you should always try to use the latest Firebird .NET provider, which you can download from Firebird's webpage.

Finally, you can find more information on the difference between nHibernate and fluent-nHibernate can be found in this SO question.

Upvotes: 1

Related Questions