dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleBoolean Structure / Greater Than or Equal Operator
The first OracleBoolean.
The second OracleBoolean.

In This Topic
    Greater Than or Equal Operator (OracleBoolean)
    In This Topic
    Compares two OracleBoolean structures to determine if the first is greater than or equal to the second.
    Syntax
    'Declaration
     
    Public Operator >=( _
       ByVal x As OracleBoolean, _
       ByVal y As OracleBoolean _
    ) As OracleBoolean
    public OracleBoolean operator >=( 
       OracleBoolean x,
       OracleBoolean y
    )

    Parameters

    x
    The first OracleBoolean.
    y
    The second OracleBoolean.

    Return Value

    true if the first of two OracleBoolean values is greater than or equal to the second; otherwise, false.
    See Also