The OracleLiteDialect type exposes the following members.
 Methods
Methods
| Name | Description | |
|---|---|---|
|  | AddIdentifierOutParameterToInsert | (Inherited from Oracle8iDialect.) | 
|  | AppendIdentitySelectToInsert |  
            Provided we SupportsInsertSelectIdentity, then attch the
            "select identity" clause to the  insert statement.
            (Inherited from Dialect.) | 
|  | 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 | (Inherited from Oracle9iDialect.) | 
|  | CreateOuterJoinFragment |  
            Support for the oracle proprietary join syntax... 
            (Inherited from Oracle8iDialect.) | 
|  | DropTemporaryTableAfterUse | (Inherited from Oracle8iDialect.) | 
|  | 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 | (Inherited from Oracle8iDialect.) | 
|  | 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.) | 
|  | GetBasicSelectClauseNullString |  
            Allows access to the basic GetSelectClauseNullString(SqlType)
            implementation... 
            (Inherited from Oracle8iDialect.) | 
|  | 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) | (Overrides Oracle8iDialect..::..GetCreateSequenceString(String).) | 
|  | GetCreateSequenceString(String, Int32, Int32) | (Overrides Dialect..::..GetCreateSequenceString(String, Int32, Int32).) | 
|  | GetCreateSequenceStrings |  
            An optional multi-line form for databases which SupportsPooledSequences. 
            (Inherited from Dialect.) | 
|  | GetDataBaseSchema | (Inherited from Oracle8iDialect.) | 
|  | 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 | (Inherited from Oracle8iDialect.) | 
|  | 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 Oracle8iDialect.) | 
|  | GetForUpdateString(String) | (Inherited from Oracle8iDialect.) | 
|  | 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 |  
            The syntax used during DDL to define a column as being an IDENTITY of
            a particular type. 
            (Inherited from Dialect.) | 
|  | 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 Oracle8iDialect.) | 
|  | 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 | (Inherited from Oracle9iDialect.) | 
|  | GetSelectSequenceNextValString | (Inherited from Oracle8iDialect.) | 
|  | GetSequenceNextValString | (Inherited from Oracle8iDialect.) | 
|  | 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.) | 
|  | RegisterCharacterTypeMappings | (Inherited from Oracle8iDialect.) | 
|  | 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.) | 
|  | RegisterDateTimeTypeMappings | (Inherited from Oracle9iDialect.) | 
|  | RegisterDefaultProperties | (Inherited from Oracle8iDialect.) | 
|  | RegisterFunction | (Inherited from Dialect.) | 
|  | RegisterFunctions | (Inherited from Oracle8iDialect.) | 
|  | RegisterGuidTypeMapping | (Inherited from Oracle8iDialect.) | 
|  | RegisterHibernateType(DbType, String) | (Inherited from Dialect.) | 
|  | RegisterHibernateType(DbType, Int32, String) | (Inherited from Dialect.) | 
|  | RegisterKeyword | (Inherited from Dialect.) | 
|  | RegisterLargeObjectTypeMappings | (Inherited from Oracle8iDialect.) | 
|  | RegisterNumericTypeMappings | (Inherited from Oracle8iDialect.) | 
|  | 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.) | 
|  | RegisterReverseHibernateTypeMappings | (Inherited from Oracle8iDialect.) | 
|  | ToBooleanValueString |  The SQL literal value to which this database maps boolean values. (Inherited from Dialect.) | 
|  | 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
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.) | 





