IsArray | ||||||
IsDate | ||||||
IsDBNull | ||||||
IsEmpty | ||||||
IsError | ||||||
IsMissing | ||||||
IsNothing | ||||||
IsNull | ||||||
IsNumeric | ||||||
IsObject | ||||||
IsReference |
Is
functions (also known as data information functions, data inspection functions, or data-testing functions) are a set of functions in Microsoft's Visual Basic 6, Visual Basic for Applications, VBScript, and Visual Basic .NET. Several of them are also provided in Transact-SQL by the .NET Framework Data Provider for Microsoft SQL Server.The functions are simple data validation and data type checking functions. The data validation functions determine whether it is possible to convert or coerce the data value given as an argument to the function to the type implied by the function name, and return a Boolean
value recording whether it was possible or not. (Note that the actual data conversion functions, such as Oct
throw exceptions if conversion is not possible. The validation functions allow one to test whether a conversion would fail, and change the program's flow of control in an if statement.) True
indicates that conversion would be possible, False
indicates that it would not be. Similarly the type checking functions return a Boolean
recording whether the argument expression is of a particular type.
In Transact-SQL, the functions return zero or one rather than Boolean
values True
and False
.
IsArray(''name'')
False
from this function in Visual Basic .NET. In Visual Basic 6, arrays are not reference types, and an uninitialized array will return True
from this function just like an initialized array.IsDate(''expression'')
Date
, or is already of type Date
. Uninitialized variables that are of type Date
can of course be converted, despite being uninitialized, so this will always return True
for such variables. Note that strings that contain a day of the week in addition to a date (e.g. "Sat, October 12, 2010"
) will return a failure result. In VBScript and Visual Basic .NET, the conversion process employs the locale settings of Microsoft Windows, meaning that what may parse as a date on one system, configured to use one locale, may fail to parse as a date on another system, configured to use a different locale.IsDBNull(''expression'')
System.DBNull.Value
. This is equivalent to Visual Basic 6's IsNull
function. Note that it is not possible to directly compare an expression for equality to System.DBNull
, because any expression of the form x = DbNull
will evaluate to DbNull
simply because it contains a null. IsDBNull
is the only way to test for equality to System.DBNull
.IsEmpty(''expression'')
Null
. Although the function takes an expression, rather than simply a variable name, any expression that isn't simply a variable name is considered not to be an uninitialized variant. This function was available in Visual Basic 6, but has been superseded in Visual Basic .NET by the IsNothing
function. In VBScript, if a variant is assigned Nothing
, this function still returns False
.IsError(''expression'')
System.Exception
class or one of its subclasses. In Visual Basic 6, the function tests whether the expression is a variant with the special vbError
subtype.IsMissing(''name'')
True
only of the variable is a variant that has not been initialized. This function only exists in Visual Basic 6. In Visual Basic .NET, optional parameters are required to have default initializers, and the function no longer exists.IsNothing(''expression'')
Nothing
. It is a simple library function (comprising just 4 CIL instructions) which can itself be written in Visual Basic as: False
for all value (non-reference) expressions, because they will be wrapped up, as part of the function call, into objects, which will by their very natures, not be null objects. To avoid this behaviour, one can use the IS
operator to compare an object directly to Nothing
, writing ''expression''
IS Nothing
rather than IsNothing(''expression'')
. The compiler will raise a compile-time error if the compared expression is a value rather than a reference type, catching the type mismatch at compile time rather than simply returning False
at run-time. Strings are reference types in Visual Basic .NET, and so capable of being null (as opposed to simply zero-length, empty, strings). For such strings, this function returns True
. (For empty strings it returns False
.)IsNull(''expression'')
Null
. A null value in any sub-expression of the expression causes the entire expression to be considered null.IsNull(''expression1'',''expression2'')
Boolean
, but instead returns the first expression if that is not NULL
, otherwise the second expression. The purpose of the function is to replace any NULL
values with another, presumably (but not required to be) non-NULL
, value. It is a two-argument version of COALESCE
.IsNumeric(''expression'')
Short
, Integer
, Long
, Single
, Double
, or Decimal
) from a character or string, or is already a number. In Transact-SQL, strings can be converted to numbers even if they contain characters that one might not expect in numbers. This is because Transact-SQL allows conversion from money
and smallmoney
types to numbers, and monetary data in string form may contain currency indicator characters such as the '£
' or '$
' symbols. The same is true of VBScript, where any string that can be converted to a currency value in the current locale is considered to be numeric. VBScript does not, however, consider dates and times to be numeric.IsObject(''expression'')
IsReference
function.IsReference(''expression'')
IsObject
function.SQL Server 2008: Transact-SQL Reference
. 23 May 2023. Microsoft.IsArray
method. MSDN.NET Framework Class Library: Microsoft.VisualBasic
namespace
IsDate
method. MSDN.NET Framework Class Library: Microsoft.VisualBasic
namespace
IsDBNull
method. MSDN.NET Framework Class Library: Microsoft.VisualBasic
namespace
IsError
method. MSDN.NET Framework Class Library: Microsoft.VisualBasic
namespace
IsNothing
method. MSDN.NET Framework Class Library: Microsoft.VisualBasic
namespace
IsNumeric
method. MSDN.NET Framework Class Library: Microsoft.VisualBasic
namespace
IsReference
method. MSDN.NET Framework Class Library: Microsoft.VisualBasic
namespace