C# Class Elmah.MySqlErrorLog

An ErrorLog implementation that uses MySQL as its backing store.
Inheritance: Elmah.ErrorLog
Afficher le fichier Open project: elmah/Elmah

Méthodes publiques

Méthode Description
GetError ( string id ) : ErrorLogEntry

Returns the specified error from the database, or null if it does not exist.

GetErrors ( int pageIndex, int pageSize, ICollection errorEntryList ) : int

Returns a page of errors from the databse in descending order of logged time.

Log ( Error error ) : string

Logs an error to the database.

Use the stored procedure called by this implementation to set a policy on how long errors are kept in the log. The default implementation stores all errors for an indefinite time.

MySqlErrorLog ( System.Collections.IDictionary config ) : System

Initializes a new instance of the SqlErrorLog class using a dictionary of configured settings.

MySqlErrorLog ( string connectionString ) : System

Initializes a new instance of the SqlErrorLog class to use a specific connection string for connecting to the database.

Method Details

GetError() public méthode

Returns the specified error from the database, or null if it does not exist.
public GetError ( string id ) : ErrorLogEntry
id string
Résultat ErrorLogEntry

GetErrors() public méthode

Returns a page of errors from the databse in descending order of logged time.
public GetErrors ( int pageIndex, int pageSize, ICollection errorEntryList ) : int
pageIndex int
pageSize int
errorEntryList ICollection
Résultat int

Log() public méthode

Logs an error to the database.
Use the stored procedure called by this implementation to set a policy on how long errors are kept in the log. The default implementation stores all errors for an indefinite time.
public Log ( Error error ) : string
error Error
Résultat string

MySqlErrorLog() public méthode

Initializes a new instance of the SqlErrorLog class using a dictionary of configured settings.
public MySqlErrorLog ( System.Collections.IDictionary config ) : System
config System.Collections.IDictionary
Résultat System

MySqlErrorLog() public méthode

Initializes a new instance of the SqlErrorLog class to use a specific connection string for connecting to the database.
public MySqlErrorLog ( string connectionString ) : System
connectionString string
Résultat System