C# Class Azavea.Open.DAO.Exceptions.UnableToProcessSqlResultsException

This exception is thrown when something went wrong while dealing with what we got back from the database query, not with the database query itself.
Inheritance: ExceptionWithConnectionInfo
Datei anzeigen Open project: azavea/net-dao

Public Methods

Method Description
UnableToProcessSqlResultsException ( IConnectionDescriptor desc, string sql, IEnumerable sqlParams, Exception e ) : System

Error while processing SQL results.

UnableToProcessSqlResultsException ( string message, IConnectionDescriptor desc, string sql, IEnumerable sqlParams, Exception e ) : System

Error while processing SQL results.

Method Details

UnableToProcessSqlResultsException() public method

Error while processing SQL results.
public UnableToProcessSqlResultsException ( IConnectionDescriptor desc, string sql, IEnumerable sqlParams, Exception e ) : System
desc IConnectionDescriptor Connection descriptor we connected with.
sql string SQL statement we were executed.
sqlParams IEnumerable Parameters for the sql statement (may be null).
e System.Exception Exception that was thrown by the delegate.
return System

UnableToProcessSqlResultsException() public method

Error while processing SQL results.
public UnableToProcessSqlResultsException ( string message, IConnectionDescriptor desc, string sql, IEnumerable sqlParams, Exception e ) : System
message string Start of the message, if you don't want to use the default.
desc IConnectionDescriptor Connection descriptor we connected with.
sql string SQL statement we executed.
sqlParams IEnumerable Parameters for the sql statement (may be null).
e System.Exception Exception that was thrown by the delegate.
return System