RE: Documentation update

2004-11-30 Thread Eric Crutchfield
OK, good point. We actually setup our table to use varchars and changed the dbType to AnsiString, so I guess I should have suggested that change instead. :) -Original Message- From: Borton, Anthony [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 30, 2004 5:27 PM To: Log4NET User Subj

RE: Documentation update

2004-11-30 Thread Borton, Anthony
Hi Eric, Thanks for the suggestion about using nvarchar and I agree that it makes sense given the fact that we are sending unicode strings to the ADONetAppender. The problem I have found with your suggestion is that it results in a problem with the SQL rowsize limitation. I believe SQL 2000 has

list of conversionPatterns

2004-11-30 Thread M. d'Entremont
Is there a listing of conversionPatterns, i.e. %m = message. Thanks Marc begin:vcard fn:Marc d'Entremont n:d'Entremont;Marc email;internet:[EMAIL PROTECTED] tel;work:250-386-4266 tel;fax:250-386-4267 x-mozilla-html:TRUE version:2.1 end:vcard

RE: XML Logs to Datasets

2004-11-30 Thread Andrew Elmhorst
Slight improvement ( Close the filestream when done ). public DataSet GetLogFile() { DataSet ds = new DataSet() ; try { string _logLocation = Environment.CurrentDirectory + Path.DirectorySeparatorChar +

Re: XML Logs to Datasets

2004-11-30 Thread anthony whalley
It was far to much hassle creating the the xmltxtreader version so i did the following. public DataSet GetLogFile() { DataSet ds = new DataSet() ; try { string _logLocation = E

Re: RollingFileAppender does not log to the file

2004-11-30 Thread Marco Herrn
Hi Nicko, The debug output looks like everything is working as it should. Can you confirm that the output file "C:\Inetpub\wwwroot\amt\log\AMTLogger.log" is being created, and is empty. I was quite sure about this, but after trying it again, I can say, that the file isn't even created. Also I wa

RE: AdoNetAppender

2004-11-30 Thread Nicko Cadell
The MSDN docs seem to have some useful examples about how to specify the parameters to the prepared statement. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/h tml/frlrfsystemdatasqlservercesqlcecommandclasspreparetopic.asp Nicko > -Original Message- > From: Patr