From: Michael D. <mik...@us...> - 2004-08-25 03:54:58
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6005/NHibernate/Engine Modified Files: IPreparer.cs Log Message: Removed BuildCommand from the public api. Index: IPreparer.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Engine/IPreparer.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IPreparer.cs 10 Feb 2004 18:32:25 -0000 1.1 --- IPreparer.cs 25 Aug 2004 03:54:48 -0000 1.2 *************** *** 19,37 **** public interface IPreparer { - - /// <summary> - /// Builds an IDbCommand from a SQL String. The SQL String can have - /// no parameters. - /// </summary> - /// <remarks>The String to build into a IDbCommand.</remarks> - IDbCommand BuildCommand(string sql); - - /// <summary> - /// Builds an IDbCommand from a SqlString - /// </summary> - /// <param name="sqlString">The SqlString to build into an IDbCommand.</param> - /// <returns></returns> - IDbCommand BuildCommand(SqlString sqlString); - /// <summary> /// Prepares the IDbCommand for the IDbConnection --- 19,22 ---- |