dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleCommand Class / IsTableValuedFunction Property

In This Topic
    IsTableValuedFunction Property
    In This Topic
    Determines whether a command is a table-valued stored function call.
    Syntax
    'Declaration
     
    Public Property IsTableValuedFunction As Nullable(Of Boolean)
    public Nullable<bool> IsTableValuedFunction {get; set;}

    Property Value

    true if the command is a table-valued stored function call; otherwise, false.
    Remarks
    When a command is a non-pipelined table-valued function call, this property must be set to true. If this property is not set and OracleConnectionStringBuilder.DescribeStoredProcedure is true, an additional query is sent to the server to check whether the stored function is pipelined if CommandType is CommandType.StoredProcedure.
    See Also