Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10755/NHibernate/Engine
Modified Files:
ISessionFactoryImplementor.cs
Log Message:
Added a config parameter "hibernate.prepare_sql". This along with if the
Driver supports preparing commands determines if .Prepare() gets called
on the command.
Index: ISessionFactoryImplementor.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine/ISessionFactoryImplementor.cs,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** ISessionFactoryImplementor.cs 30 Oct 2004 14:41:54 -0000 1.11
--- ISessionFactoryImplementor.cs 21 Dec 2004 20:43:41 -0000 1.12
***************
*** 74,77 ****
--- 74,83 ----
/// <summary>
+ /// Gets a boolean indicating if the sql statement should be prepared. The value
+ /// is read from <c>hibernate.prepare_sql</c>.
+ /// </summary>
+ bool PrepareSql { get; }
+
+ /// <summary>
/// Get the return types of a query
/// </summary>
|