This topic has not yet been rated - Rate this topic

SqlString.GreaterThanOrEqual Method

Performs a logical comparison of the two SqlString operands to determine if the first is greater than or equal to the second.

[Visual Basic]
Public Shared Function GreaterThanOrEqual( _
   ByVal x As SqlString, _
   ByVal y As SqlString _
) As SqlBoolean
[C#]
public static SqlBoolean GreaterThanOrEqual(
 SqlString x,
 SqlString y
);
[C++]
public: static SqlBoolean GreaterThanOrEqual(
 SqlString x,
 SqlString y
);
[JScript]
public static function GreaterThanOrEqual(
   x : SqlString,
 y : SqlString
) : SqlBoolean;

Parameters

x
A SqlString.
y
A SqlString.

Return Value

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

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework

See Also

SqlString Structure | SqlString Members | System.Data.SqlTypes Namespace

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.