Banshee.Podcasting.PodcastService.ReplaceNewlines C# (CSharp) Method

ReplaceNewlines() private method

private ReplaceNewlines ( string table, string column ) : void
table string
column string
return void
        private void ReplaceNewlines (string table, string column)
        {
            string cmd = String.Format ("UPDATE {0} SET {1}=replace({1}, ?, ?)", table, column);
            ServiceManager.DbConnection.Execute (cmd, "\r\n", String.Empty);
            ServiceManager.DbConnection.Execute (cmd, "\n", String.Empty);
            ServiceManager.DbConnection.Execute (cmd, "\r", String.Empty);
        }