Azavea.Open.DAO.Exceptions.UnableToProcessSqlResultsException.UnableToProcessSqlResultsException C# (CSharp) Method

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
        public UnableToProcessSqlResultsException(IConnectionDescriptor desc, string sql,
            IEnumerable sqlParams, Exception e)
            : base("Exception while processing results from SQL statement: " +
                   SqlUtilities.SqlParamsToString(sql, sqlParams) + ".", desc, e)
        {
        }

Same methods

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