NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SQLBinary.GE

Compares the first SQLBinary for being greater than or equal the second SQLBinary.

[Visual Basic]
Public Shared Function GE( _
   ByVal x As SQLBinary, _
   ByVal y As SQLBinary _
) As SQLBoolean
[C#]
public static SQLBoolean GE(
   SQLBinary x,
   SQLBinary y
);
[C++]
public: static SQLBoolean GE(
   SQLBinary* x,
   SQLBinary* y
);
[JScript]
public static function GE(
   x : SQLBinary,
   y : SQLBinary
) : SQLBoolean;

Parameters

x
A SQLBinary.
y
A SQLBinary.

Return Value

A SQLBoolean that is True if the first instance is greaater than or equal to the second instance, otherwise False. If either instance of SQLBinary is null, the Value of the SQLBoolean will be Null.

See Also

SQLBinary Class | SQLBinary Members | System.Data.SQLTypes Namespace | NE | LT | LE | GT | EQ