14.1.4.4 GreaterThan
This method determines whether or not the first of two OracleBinary values is greater than the second.
                  
Declaration
// C# public static bool GreaterThan(OracleBinary value1, OracleBinary value2);
Parameters
- 
                        value1The first OracleBinary.
- 
                        value2The second OracleBinary.
Return Value
Returns true if the first of two OracleBinary values is greater than the second; otherwise returns false.
                  
Remarks
The following rules apply to the behavior of this method.
- 
                        Any OracleBinarythat has a value is greater than anOracleBinarythat has a null value.
- 
                        Two OracleBinarys that contain a null value are equal.
Example
// C#
 
using System;
using Oracle.DataAccess.Types;
 
class GreaterThanSample
{
  static void Main(string[] args)
  {
    OracleBinary binary1 = OracleBinary.Null;
    OracleBinary binary2 = new OracleBinary(new byte[] {1});
 
    // Compare two OracleBinary structs; binary1 < binary2
    if (OracleBinary.GreaterThan(binary1, binary2))
      Console.WriteLine("binary1 > binary2");
    else
      Console.WriteLine("binary1 < binary2");
  }
}