RE: Questions about ADONetAppender (Resent with correct subject)

2006-07-09 Thread Nicko Cadell
To: Log4NET Dev Subject: Questions about ADONetAppender (Resent with correct subject) Sorry ... I just realized I sent under the thread log4net 1.2.10 Released which would cause some confusion. 2006/6/21, Cliff Burger [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] : Questions

Questions about ADONetAppender (Resent with correct subject)

2006-06-21 Thread Cliff Burger
Sorry ... I just realized I sent under the thread log4net 1.2.10 Released which would cause some confusion.2006/6/21, Cliff Burger [EMAIL PROTECTED]:Questions about ADONetAppenderI'm considering creating a MSSQLAppender for my company's use, as we are primarily an MS Shop. General questions: Is

Re: Questions about ADONetAppender (Resent with correct subject)

2006-06-21 Thread Ron Grabowski
Minor changes like this may help: if (connectionTypeIsCloneable) { return (IDbConnection) ((ICloneable)connectionType).Clone(); } else { return (IDbConnection) Activator.CreateInstance(connectionType); } but its difficult to know without profiling the code. Can you assemble a few