C# 클래스 Azavea.Open.DAO.Exceptions.UnableToRunSqlException

This exception is thrown when we are able to connect to a DB, but we get an exception executing a SQL statement.
상속: ExceptionWithConnectionInfo
파일 보기 프로젝트 열기: azavea/net-dao

공개 메소드들

메소드 설명
UnableToRunSqlException ( IConnectionDescriptor desc, string sql, IEnumerable sqlParams, Exception e ) : System

Unable to execute SQL.

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

Unable to execute SQL.

메소드 상세

UnableToRunSqlException() 공개 메소드

Unable to execute SQL.
public UnableToRunSqlException ( IConnectionDescriptor desc, string sql, IEnumerable sqlParams, Exception e ) : System
desc IConnectionDescriptor Connection descriptor we connected with.
sql string SQL statement we were trying to execute.
sqlParams IEnumerable Parameters for the sql statement (may be null).
e System.Exception Exception that was thrown by the database driver.
리턴 System

UnableToRunSqlException() 공개 메소드

Unable to execute SQL.
public UnableToRunSqlException ( 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 were trying to execute.
sqlParams IEnumerable Parameters for the sql statement (may be null).
e System.Exception Exception that was thrown by the database driver.
리턴 System