Revision: 5831
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5831&view=rev
Author: fabiomaulo
Date: 2011-05-17 18:04:43 +0000 (Tue, 17 May 2011)
Log Message:
-----------
Fix NH-2695
Modified Paths:
--------------
trunk/nhibernate/src/NHibernate/Driver/FirebirdDriver.cs
Modified: trunk/nhibernate/src/NHibernate/Driver/FirebirdDriver.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Driver/FirebirdDriver.cs 2011-05-17 17:45:09 UTC (rev 5830)
+++ trunk/nhibernate/src/NHibernate/Driver/FirebirdDriver.cs 2011-05-17 18:04:43 UTC (rev 5831)
@@ -9,12 +9,12 @@
/// Initializes a new instance of the <see cref="FirebirdDriver"/> class.
/// </summary>
/// <exception cref="HibernateException">
- /// Thrown when the <c>FirebirdSql.Data.Firebird</c> assembly can not be loaded.
+ /// Thrown when the <c>FirebirdSql.Data.FirebirdClient</c> assembly can not be loaded.
/// </exception>
public FirebirdDriver() : base(
- "FirebirdSql.Data.Firebird",
- "FirebirdSql.Data.Firebird.FbConnection",
- "FirebirdSql.Data.Firebird.FbCommand")
+ "FirebirdSql.Data.FirebirdClient",
+ "FirebirdSql.Data.FirebirdClient.FbConnection",
+ "FirebirdSql.Data.FirebirdClient.FbCommand")
{
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|