public class SqlLogAdapter : object, ILogAdapter
| Member | Description | |
|---|---|---|
![]() |
Constructor | Must pass in a SQL Server connection string or config ConnectionString Id. |
![]() ![]() |
STR_ApplicationWebLogCreateStatement | |
![]() |
Clear | Clears all the records of the log table public sealed bool Clear();
public sealed bool Clear(int countToLeave);
|
![]() |
CreateLog | Creates a new log table in the current database. If the table exists already it is dropped and recreated. public sealed bool CreateLog();
|
![]() |
DeleteLog | Deletes the Sql Log Table public sealed bool DeleteLog();
|
![]() |
GetEntries | Returns entries for a given error level, and date range public sealed IDataReader GetEntries(ErrorLevels errorLevel,
int count, DateTime? dateFrom, DateTime? dateTo, string fieldList); |
![]() |
GetEntry | Returns an individual Web log entry from the log table public sealed WebLogEntry GetEntry(int id);
|
![]() |
GetEntryList | public sealed IEnumerable<WebLogEntry> GetEntryList(ErrorLevels errorLevel,
int count, DateTime? dateFrom, DateTime? dateTo, string fieldList); |
![]() |
WriteEntry | Writes a new Web specific entry into the log file public sealed bool WriteEntry(WebLogEntry entry);
|
![]() |
ConnectionString | |
![]() |
LogFilename | The name of the table that data in SQL Server is written to |