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.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also