Information.IsDBNull(Object) Yöntem

Tanım

BooleanBir ifadenin sınıfa göre değerlendirilip değerlendirilmediğini gösteren bir değer döndürür DBNull .Returns a Boolean value indicating whether an expression evaluates to the DBNull class.

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

Parametreler

Expression
Object

Gereklidir.Required. Object ifadesini.Object expression.

Döndürülenler

Boolean

BooleanBir ifadenin sınıfa göre değerlendirilip değerlendirilmediğini gösteren bir değer döndürür DBNull .Returns a Boolean value indicating whether an expression evaluates to the DBNull class.

Örnekler

Bu örnek, IsDBNull bir değişkenin değerlendirilip değerlendirilmeyeceğini anlamak için işlevini kullanır 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.

Açıklamalar

IsDBNull``Trueveri türünün Expression türü olarak değerlendirilip döndürülmeyeceğini döndürür DBNull ; Aksi takdirde, IsDBNull döndürür False .IsDBNull returns True if the data type of Expression evaluates to the DBNull type; otherwise, IsDBNull returns False.

System.DBNullDeğer, Object eksik veya varolmayan verileri temsil ettiğini gösterir.The System.DBNull value indicates that the Object represents missing or nonexistent data. DBNull , Nothing bir değişkenin henüz başlatılmamış olduğunu gösteren ile aynı değildir.DBNull is not the same as Nothing, which indicates that a variable has not yet been initialized. DBNull Ayrıca, "" bazen null dize olarak adlandırılan sıfır uzunluklu dize () ile aynı değildir.DBNull is also not the same as a zero-length string (""), which is sometimes referred to as a null string.

Şunlara uygulanır

Ayrıca bkz.