Refactoring DAL Code to Support Stored Procedures (C#) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T12:32:01Z http://stackoverflow.com/feeds/question/846136 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/846136/refactoring-dal-code-to-support-stored-procedures-c 0 Refactoring DAL Code to Support Stored Procedures (C#) zSysop 2009-05-10T21:24:31Z 2009-05-10T23:09:45Z <pre><code> private static readonly string dataProvider = ConfigurationManager.AppSettings.Get("Provider"); private static readonly DbProviderFactory factory = DbProviderFactories.GetFactory(dataProvider); private static readonly string connectionString = ConfigurationManager.ConnectionStrings[dataProvider].ConnectionString; /// &lt;summary&gt; /// Executes Update statements in the database. /// &lt;/summary&gt; /// &lt;param name="sql"&gt;Sql statement.&lt;/param&gt; /// &lt;returns&gt;Number of rows affected.&lt;/returns&gt; public static int Update(string sql) { using (DbConnection connection = factory.CreateConnection()) { connection.ConnectionString = connectionString; using (DbCommand command = factory.CreateCommand()) { command.Connection = connection; command.CommandText = sql; connection.Open(); return command.ExecuteNonQuery(); } } } </code></pre> <p>I need help in re-writing this so that it'll work with stored procedures. (Pass in sproc name and params) Does anyone have any idea how i should go about doing this? Edit: The area I'm having problems with is trying to figure out ways to fill in params.</p> <p>Thanks</p> http://stackoverflow.com/questions/846136/refactoring-dal-code-to-support-stored-procedures-c/846143#846143 0 Answer by Drahakar for Refactoring DAL Code to Support Stored Procedures (C#) Drahakar 2009-05-10T21:28:35Z 2009-05-10T21:28:35Z <p>You could add 3 parameters :</p> <ol> <li>string ShemaName -- Store the name of the database shema</li> <li>string StoreProcName -- Store the name of the stored procedure</li> <li>List -- list of your store proc parameter</li> </ol> http://stackoverflow.com/questions/846136/refactoring-dal-code-to-support-stored-procedures-c/846153#846153 0 Answer by benPearce for Refactoring DAL Code to Support Stored Procedures (C#) benPearce 2009-05-10T21:31:27Z 2009-05-10T21:31:27Z <p>Use an overload such as </p> <pre><code>public static int Update(string storedProc, Dictionary&lt;string,string&gt; params) { ... } </code></pre> http://stackoverflow.com/questions/846136/refactoring-dal-code-to-support-stored-procedures-c/846165#846165 5 Answer by John Saunders for Refactoring DAL Code to Support Stored Procedures (C#) John Saunders 2009-05-10T21:36:33Z 2009-05-10T23:09:45Z <p>You already need parameters independent of whether you're implementing stored procedures.</p> <p>Right now, your code could be called with a query like <code>SELECT * FROM Table WHERE ID = @ID</code>, in which case, you already need to pass a <code>Dictionary&lt;string,object&gt; params</code>. Have your code fill in the Parameters collection of the command you already have, and test that, before worrying about stored procedures.</p> <p>Once that works, you should simply create an overload that accepts a bool that says this is a stored procedure, then use it to set the CommandType property of the command.</p> <p><hr /></p> <p><strong>Edit: Here's How I Would Refactor It</strong></p> <p><em>Step 1: Generalize Update</em></p> <p>There's nothing special about the Update method that prevents it being used for other non-query operations, aside from the name. So:</p> <pre><code> /// &lt;summary&gt; /// Executes Update statements in the database. /// &lt;/summary&gt; /// &lt;param name="sql"&gt;Sql statement.&lt;/param&gt; /// &lt;returns&gt;Number of rows affected.&lt;/returns&gt; public static int Update(string sql) { return NonQuery(sql); } public static int NonQuery(string sql) { using (DbConnection connection = factory.CreateConnection()) { connection.ConnectionString = connectionString; using (DbCommand command = factory.CreateCommand()) { command.Connection = connection; command.CommandText = sql; connection.Open(); return command.ExecuteNonQuery(); } } } </code></pre> <p><em>Step 2: What About Parameters?</em></p> <p>Your current code couldn't even handle UPDATE queries that used parameters, so let's start fixing that. First, make sure it still works if no parameters are specified:</p> <pre><code> public static int NonQuery(string sql) { Dictionary&lt;string, object&gt; parameters = null; if (parameters == null) { parameters = new Dictionary&lt;string, object&gt;(); } using (DbConnection connection = factory.CreateConnection()) { connection.ConnectionString = connectionString; using (DbCommand command = factory.CreateCommand()) { command.Connection = connection; command.CommandText = sql; foreach (KeyValuePair&lt;string, object&gt; p in parameters) { var parameter = command.CreateParameter(); parameter.ParameterName = p.Key; parameter.Value = p.Value; command.Parameters.Add(parameter); } connection.Open(); return command.ExecuteNonQuery(); } } } </code></pre> <p>Once that works, promote <em>parameters</em> to be a parameter. This doesn't affect any existing callers of <code>Update</code>:</p> <pre><code> /// &lt;summary&gt; /// Executes Update statements in the database. /// &lt;/summary&gt; /// &lt;param name="sql"&gt;Sql statement.&lt;/param&gt; /// &lt;returns&gt;Number of rows affected.&lt;/returns&gt; public static int Update(string sql) { return NonQuery(sql, null); } public static int NonQuery(string sql, Dictionary&lt;string, object&gt; parameters) </code></pre> <p>At this point, test NonQuery with a parameterized query. Once that works, create an overload of Update that accepts the parameters:</p> <pre><code> /// &lt;summary&gt; /// Executes Update statements in the database. /// &lt;/summary&gt; /// &lt;param name="sql"&gt;Sql statement.&lt;/param&gt; /// &lt;returns&gt;Number of rows affected.&lt;/returns&gt; public static int Update(string sql) { return NonQuery(sql, null); } /// &lt;summary&gt; /// Executes Update statements in the database. /// &lt;/summary&gt; /// &lt;param name="sql"&gt;Sql statement.&lt;/param&gt; /// &lt;param name="parameters"&gt;Name/value dictionary of parameters&lt;/param&gt; /// &lt;returns&gt;Number of rows affected.&lt;/returns&gt; public static int Update(string sql, Dictionary&lt;string, object&gt; parameters) { return NonQuery(sql, parameters); } </code></pre> <p><em>Step 3: Take Stored Procedures Into Account</em></p> <p>There's little difference in terms of how stored procedures would be handled. What you've already got is implicitly as follows:</p> <pre><code> using (DbCommand command = factory.CreateCommand()) { command.Connection = connection; command.CommandText = sql; command.CommandType = CommandType.Text; </code></pre> <p>So take the CommandType.Text and promote it to be a parameter in an overload:</p> <pre><code> public static int NonQuery(string sql, Dictionary&lt;string, object&gt; parameters) { return NonQuery(sql, CommandType.Text, parameters); } public static int NonQuery(string sql, CommandType commandType, Dictionary&lt;string, object&gt; parameters) </code></pre> <p>Finally, if you like, update <code>Update</code>:</p> <pre><code> /// &lt;summary&gt; /// Executes Update statements in the database. /// &lt;/summary&gt; /// &lt;param name="sql"&gt;Sql statement.&lt;/param&gt; /// &lt;param name="parameters"&gt;Name/value dictionary of parameters&lt;/param&gt; /// &lt;returns&gt;Number of rows affected.&lt;/returns&gt; public static int Update(string sql, Dictionary&lt;string, object&gt; parameters) { return Update(sql, CommandType.Text, parameters); } /// &lt;summary&gt; /// Executes Update statements in the database. /// &lt;/summary&gt; /// &lt;param name="sql"&gt;Sql statement.&lt;/param&gt; /// &lt;param name="commandType"&gt;CommandType.Text or CommandType.StoredProcedure&lt;/param&gt; /// &lt;param name="parameters"&gt;Name/value dictionary of parameters&lt;/param&gt; /// &lt;returns&gt;Number of rows affected.&lt;/returns&gt; public static int Update(string sql, CommandType commandType, Dictionary&lt;string, object&gt; parameters) { return NonQuery(sql, parameters); } </code></pre> <p>Of course, as a final exercise for the reader, you might replace all your Update calls with calls to NonQuery and get rid of Update entirely.</p> <p><hr /></p> <p>Of course, this simple technique doesn't handle output parameters, or situations where it's necessary to specify the DbType of the parameter. For that, you'd need to accept a ParameterCollection of some kind.</p> http://stackoverflow.com/questions/846136/refactoring-dal-code-to-support-stored-procedures-c/846186#846186 0 Answer by Mike Geise for Refactoring DAL Code to Support Stored Procedures (C#) Mike Geise 2009-05-10T21:49:06Z 2009-05-10T21:55:00Z <p>I do something similar to this using a interface and generics.</p> <p>Example</p> <pre><code> using System.Data.SqlClient; public interface IParameter&lt;T&gt; where T : IEntity&lt;T&gt; { void Populate(SqlParameterCollection parameters, T entity); } </code></pre> <p>A class that implements the interface using System.Data; using System.Data.SqlClient;</p> <pre><code>public class UserParameter : IParameter&lt;User&gt; { public void Populate(SqlParameterCollection parameters, User entity) { parameters.Add("@ID", SqlDbType.UniqueIdentifier).Value = entity.Id; parameters.Add("@Name", SqlDbType.NVarChar, 255).Value = entity.Name; parameters.Add("@EmailAddress", SqlDbType.NVarChar, 255).Value = entity.EmailAddress; } } </code></pre> <p>Then we have the method that performs the update</p> <pre><code> public void Update&lt;T&gt;(string prefix, IParameter&lt;T&gt; parameters, T entity) where T : class, IEntity&lt;T&gt; { using (var connection = this.Connection()) { using (var command = new SqlCommand(string.Format("dbo.{0}_Update", prefix), connection)) { command.CommandType = CommandType.StoredProcedure; parameters.Populate(command.Parameters, entity); connection.Open(); command.ExecuteNonQuery(); connection.Close(); } } } </code></pre> <p>I then call this by doing somethind like</p> <p>Update("Users", new UserParameter(), value);</p> <p>I also do the same for populating a entity from the reader values.</p> http://stackoverflow.com/questions/846136/refactoring-dal-code-to-support-stored-procedures-c/846191#846191 0 Answer by Alan McBee for Refactoring DAL Code to Support Stored Procedures (C#) Alan McBee 2009-05-10T21:52:50Z 2009-05-10T21:52:50Z <p>You may have a hard time with this, depending on the environment in which you plan to place this.</p> <p>If I understand correctly, you'd like to keep the function signature (a single string parameter) but process it differently if the first word in the string is not "UPDATE". For example, this string should execute a stored proc named UpdateTable1 with four arguments:</p> <pre><code>UpdateTable1 NULL, A5KMI, "New description", #5/10/2009# </code></pre> <p>or something like that.</p> <p>The problem is that you need a delimiter between arguments in the rest of the string. For this, you will have to break apart the string into tokens, and this can get really trick.</p> <p>So the alternative is to prepend the command EXEC in front of the entire string, set the whole thing into the CommandText property, and then call one of the Execute methods.</p> <p>What I don't like about this is that it really opens you up with SQL injection vulnerability. If it's at all possible, use overloaded methods like the ones others have answered with, and make the caller split the arguments into a collection of some kind.</p>