The PostgreSQL82Dialect type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() | AddIdentifierOutParameterToInsert | (Inherited from PostgreSQLDialect.) |
![]() | AppendIdentitySelectToInsert | (Inherited from PostgreSQL81Dialect.) |
![]() | AppendLockHint |
Some dialects support an alternative means to SELECT FOR UPDATE,
whereby a "lock hint" is appends to the table name in the from clause.
(Inherited from Dialect.) |
![]() | ApplyLocksToSql |
Modifies the given SQL by applying the appropriate updates for the specified
lock modes and key columns.
(Inherited from Dialect.) |
![]() | BuildSQLExceptionConverter |
Build an instance of the ISQLExceptionConverter preferred by this dialect for
converting DbException into NHibernate's ADOException hierarchy.
(Inherited from Dialect.) |
![]() | CreateCaseFragment |
Create a CaseFragment strategy responsible
for handling this dialect's variations in how CASE statements are
handled.
(Inherited from Dialect.) |
![]() | CreateOuterJoinFragment |
Create a JoinFragment strategy responsible
for handling this dialect's variations in how joins are handled.
(Inherited from Dialect.) |
![]() | DropTemporaryTableAfterUse | Do we need to drop the temporary table after use? (Inherited from Dialect.) |
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GenerateTemporaryTableName | Generate a temporary table name given the bas table. (Inherited from Dialect.) |
![]() | GetAddForeignKeyConstraintString |
The syntax used to add a foreign key constraint to a table. If SupportsForeignKeyConstraintInAlterTable is false, the returned string will be added to the create table statement instead. In this case, extra strings, like "add", that apply when using alter table should be omitted.
(Inherited from Dialect.) |
![]() | GetAddPrimaryKeyConstraintString |
The syntax used to add a primary key constraint to a table
(Inherited from Dialect.) |
![]() | GetCastTypeName |
Get the name of the database type appropriate for casting operations
(via the CAST() SQL function) for the given SqlType typecode.
(Inherited from Dialect.) |
![]() | GetColumnComment | (Inherited from Dialect.) |
![]() | GetCreateSequenceString(String) | (Inherited from PostgreSQLDialect.) |
![]() | GetCreateSequenceString(String, Int32, Int32) |
Overloaded form of GetCreateSequenceString(String), additionally
taking the initial value and increment size to be applied to the sequence
definition.
(Inherited from Dialect.) |
![]() | GetCreateSequenceStrings |
An optional multi-line form for databases which SupportsPooledSequences.
(Inherited from Dialect.) |
![]() | GetDataBaseSchema | (Inherited from PostgreSQLDialect.) |
![]() | GetDropForeignKeyConstraintString |
The syntax used to drop a foreign key constraint from a table.
(Inherited from Dialect.) |
![]() | GetDropIndexConstraintString |
The syntax used to drop an index constraint from a table.
(Inherited from Dialect.) |
![]() | GetDropPrimaryKeyConstraintString |
The syntax used to drop a primary key constraint from a table.
(Inherited from Dialect.) |
![]() | GetDropSequenceString | (Overrides PostgreSQLDialect..::..GetDropSequenceString(String).) |
![]() | GetDropSequenceStrings |
The multiline script used to drop a sequence.
(Inherited from Dialect.) |
![]() | GetDropTableString |
Return SQL needed to drop the named table. May (and should) use
some form of "if exists" clause, and cascade constraints.
(Inherited from Dialect.) |
![]() | GetForUpdateNowaitString | (Inherited from PostgreSQL81Dialect.) |
![]() | GetForUpdateString(String) | (Inherited from PostgreSQLDialect.) |
![]() | GetForUpdateString(LockMode) |
Given a lock mode, determine the appropriate for update fragment to use.
(Inherited from Dialect.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetHibernateTypeName(DbType) | (Inherited from Dialect.) |
![]() | GetHibernateTypeName(DbType, Int32, Int32, Int32) |
Get the name of the Hibernate IType associated
with the given DbType typecode with the given storage
specification parameters.
(Inherited from Dialect.) |
![]() | GetIdentityColumnString |
PostgreSQL supports serial and serial4 type for 4 bytes integer auto increment column.
bigserial or serial8 can be used for 8 bytes integer auto increment column.
(Inherited from PostgreSQL81Dialect.) |
![]() | GetIdentitySelectString |
Get the select command to use to retrieve the last generated IDENTITY
value for a particular table
(Inherited from Dialect.) |
![]() | GetIfExistsDropConstraint |
The syntax that is used to check if a constraint exists before dropping it
(Inherited from Dialect.) |
![]() | GetIfExistsDropConstraintEnd |
The syntax that is used to close the if for a constraint exists check, used
for dialects that requires begin/end for ifs
(Inherited from Dialect.) |
![]() | GetIfNotExistsCreateConstraint |
The syntax that is used to check if a constraint does not exists before creating it
(Inherited from Dialect.) |
![]() | GetIfNotExistsCreateConstraintEnd |
The syntax that is used to close the if for a constraint exists check, used
for dialects that requires begin/end for ifs
(Inherited from Dialect.) |
![]() | GetLimitString(SqlString, SqlString, SqlString) | (Inherited from PostgreSQLDialect.) |
![]() | GetLimitString(SqlString, Nullable<(Of <<'(Int32>)>>), Nullable<(Of <<'(Int32>)>>), Parameter, Parameter) |
Generates a string to limit the result set to a number of maximum results with a specified offset into the results.
Expects any database-specific offset and limit adjustments to have already been performed (ex. UseMaxForLimit, OffsetStartsAtOne).
Performs error checking based on the various dialect limit support options. If both parameters and fixed valeus are
specified, this will use the parameter option if possible. Otherwise, it will fall back to a fixed string.
(Inherited from Dialect.) |
![]() | GetLimitValue |
Some databases require that a limit statement contain the maximum row number
instead of the number of rows to retrieve. This method adjusts source
limit and offset values to account for this.
(Inherited from Dialect.) |
![]() | GetLockingStrategy |
Get a strategy instance which knows how to acquire a database-level lock
of the specified mode for this dialect.
(Inherited from Dialect.) |
![]() | GetLongestTypeName |
Gets the name of the longest registered type for a particular DbType.
(Inherited from Dialect.) |
![]() | GetOffsetValue |
Some databases use limit row offsets that start at one instead of zero.
This method adjusts a desired offset using the OffsetStartsAtOne flag.
(Inherited from Dialect.) |
![]() | GetResultSet |
Given a callable statement previously processed by RegisterResultSetOutParameter(DbCommand, Int32),
extract the DbDataReader from the OUT parameter.
(Inherited from Dialect.) |
![]() | GetSelectClauseNullString | PostgreSQL requires to cast NULL values to correctly handle UNION/UNION ALL (Inherited from PostgreSQLDialect.) |
![]() | GetSelectSequenceNextValString | (Inherited from PostgreSQLDialect.) |
![]() | GetSequenceNextValString | (Inherited from PostgreSQLDialect.) |
![]() | GetTableComment | (Inherited from Dialect.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | GetTypeName(SqlType) |
Get the name of the database type associated with the given
SqlType,
(Inherited from Dialect.) |
![]() | GetTypeName(SqlType, Int32, Int32, Int32) |
Get the name of the database type associated with the given
SqlType.
(Inherited from Dialect.) |
![]() | IsKnownToken | (Inherited from Dialect.) |
![]() | IsQuoted |
Checks to see if the name has been quoted.
(Inherited from Dialect.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | PerformTemporaryTableDDLInIsolation |
Does the dialect require that temporary table DDL statements occur in
isolation from other statements? This would be the case if the creation
would cause any current transaction to get committed implicitly.
(Inherited from Dialect.) |
![]() | Qualify | (Inherited from Dialect.) |
![]() | Quote |
Quotes a name.
(Inherited from Dialect.) |
![]() | QuoteForAliasName |
Quotes a name for being used as a aliasname
(Inherited from Dialect.) |
![]() | QuoteForColumnName |
Quotes a name for being used as a columnname
(Inherited from Dialect.) |
![]() | QuoteForSchemaName |
Quotes a name for being used as a schemaname
(Inherited from Dialect.) |
![]() | QuoteForTableName |
Quotes a name for being used as a tablename
(Inherited from Dialect.) |
![]() | RegisterColumnType(DbType, String) |
Suclasses register a typename for the given type code. $l in the
typename will be replaced by the column length (if appropriate).
(Inherited from Dialect.) |
![]() | RegisterColumnType(DbType, Int32, String) |
Subclasses register a typename for the given type code and maximum
column length. $l in the type name will be replaced by the column
length (if appropriate)
(Inherited from Dialect.) |
![]() | RegisterFunction | (Inherited from Dialect.) |
![]() | RegisterHibernateType(DbType, String) | (Inherited from Dialect.) |
![]() | RegisterHibernateType(DbType, Int32, String) | (Inherited from Dialect.) |
![]() | RegisterKeyword | (Inherited from Dialect.) |
![]() | RegisterResultSetOutParameter |
Registers an OUT parameter which will be returing a
DbDataReader. How this is accomplished varies greatly
from DB to DB, hence its inclusion (along with {@link #getResultSet}) here.
(Inherited from Dialect.) |
![]() | ToBooleanValueString | (Inherited from PostgreSQLDialect.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | UnQuote(String) |
Unquotes and unescapes an already quoted name
(Inherited from Dialect.) |
![]() | UnQuote(array<String>[]()[][]) |
Unquotes an array of Quoted Names.
(Inherited from Dialect.) |
Extension Methods
Name | Description | |
---|---|---|
![]() | As<(Of <<'(T>)>>) | (Defined by TypeHelperExtensionMethods.) |
![]() | IsBetween |
Apply a "between" constraint to the named property
Note: throws an exception outside of a QueryOver expression
(Defined by RestrictionExtensions.) |
![]() | IsIn(array<Object>[]()[][]) | Overloaded.
Apply an "in" constraint to the named property
Note: throws an exception outside of a QueryOver expression
(Defined by RestrictionExtensions.) |
![]() | IsIn(ICollection) | Overloaded.
Apply an "in" constraint to the named property
Note: throws an exception outside of a QueryOver expression
(Defined by RestrictionExtensions.) |
![]() | IsProxy | (Defined by NHibernateProxyHelper.) |
![]() | ToTypeParameters | (Defined by ReflectHelper.) |