Information.IsDBNull(Object) Metoda
Definice
public:
static bool IsDBNull(System::Object ^ Expression);
public static bool IsDBNull (object? Expression);
public static bool IsDBNull (object Expression);
static member IsDBNull : obj -> bool
Public Function IsDBNull (Expression As Object) As Boolean
Parametry
- Expression
- Object
Povinná hodnota.Required. Object vyjádření.Object expression.
Návraty
Vrací Boolean hodnotu určující, zda je výraz vyhodnocen jako DBNull Třída.Returns a Boolean value indicating whether an expression evaluates to the DBNull class.
Příklady
Tento příklad používá IsDBNull funkci k určení, zda je proměnná vyhodnocena jako DBNull .This example uses the IsDBNull function to determine if a variable evaluates to DBNull.
Dim testVar As Object
Dim nullCheck As Boolean
nullCheck = IsDBNull(testVar)
testVar = ""
nullCheck = IsDBNull(testVar)
testVar = System.DBNull.Value
nullCheck = IsDBNull(testVar)
' The first two calls to IsDBNull return False; the third returns True.
Poznámky
IsDBNull Vrátí, True zda je datový typ Expression vyhodnocen jako DBNull typ; v opačném případě IsDBNull vrátí False .IsDBNull returns True if the data type of Expression evaluates to the DBNull type; otherwise, IsDBNull returns False.
System.DBNullHodnota označuje, že Object představuje chybějící nebo neexistující data.The System.DBNull value indicates that the Object represents missing or nonexistent data. DBNull není stejný jako Nothing , což indikuje, že proměnná ještě nebyla inicializována.DBNull is not the same as Nothing, which indicates that a variable has not yet been initialized. DBNull není také stejný jako řetězec s nulovou délkou ( "" ), což je někdy označováno jako řetězec s hodnotou null.DBNull is also not the same as a zero-length string (""), which is sometimes referred to as a null string.