show/hide this revision's text 4 tags
show/hide this revision's text 3 edited title

c# refactoring ideas neededRefactoring DAL Code to Support Stored Procedures (C#)

show/hide this revision's text 2 added 14 characters in body

    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;
    /// <summary>
    /// Executes Update statements in the database.
    /// </summary>
    /// <param name="sql">Sql statement.</param>
    /// <returns>Number of rows affected.</returns>
    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();
            }
        }
    }

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.

Thanks

show/hide this revision's text 1