PgSqlException Class Properties
For a list of all members of this type, see PgSqlException members.
| Name | Description |
 | CallStack | Gets an indication of the context in which the error occurred. |
 | ColumnName | Gets the name of the column, the error is associated with. |
 | ConstraintName | Gets the name of the constraint, the error is associated with. |
 | Data | Gets a collection of key/value pairs that provide additional user-defined information about the exception. (Inherited from System.Exception) |
 | DataTypeName | Gets the name of the data type, the error is associated with. |
 | DetailMessage | Gets a secondary error message. |
 | Error | Gets the PgSqlError that caused the exception. |
 | ErrorCode | Gets the SQLSTATE code for the error. |
 | ErrorSql | Gets the query that caused the error. |
 | FileName | Gets the file name of the source-code location where the error occurred. |
 | HelpLink | Gets or sets a link to the help file associated with this exception. (Inherited from System.Exception) |
 | Hint | Gets an optional suggestion what to do about the problem. |
 | HResult | Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception. (Inherited from System.Exception) |
 | InnerException | Gets the System.Exception instance that caused the current exception. (Inherited from System.Exception) |
 | InternalPosition | Gets the error cursor position as 1-based index in the InternalQuery string. |
 | InternalQuery | Gets the text of an internally-generated command that caused the error, for example, a SQL query performed by a PL/pgSQL function. |
 | LineNumber | Gets the line number of the source-code location where the error occurred. |
 | Message | Overridden. Returns a string representation of the error message information. |
 | Position | Gets an error cursor position as index into the original query string. |
 | ProcedureName | Gets the name of the source-code routine reporting the error. |
 | SchemaName | Gets the name of the schema containing the object, the error is associated with. |
 | Severity | Gets a value indicating a severity of the error. |
 | SeverityMessage | Gets the severity text of the error, as returned by the server. |
 | Source | Gets or sets the name of the application or the object that causes the error. (Inherited from System.Exception) |
 | StackTrace | Gets a string representation of the immediate frames on the call stack. (Inherited from System.Exception) |
 | TableName | Gets the name of the table, the error is associated with. |
 | TargetSite | Gets the method that throws the current exception. (Inherited from System.Exception) |
Top