DataColumn.AllowDBNull-Eigenschaft
Ruft einen Wert ab, der angibt, ob in dieser Spalte für die zur Tabelle gehörenden Zeilen NULL-Werte zulässig sind, oder legt diesen fest.
Namespace: System.Data
Assembly: System.Data (in system.data.dll)
Syntax
'Declaration
Public Property AllowDBNull As Boolean
'Usage
Dim instance As DataColumn
Dim value As Boolean
value = instance.AllowDBNull
instance.AllowDBNull = value
public bool AllowDBNull { get; set; }
public:
property bool AllowDBNull {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_AllowDBNull ()
/** @property */
public void set_AllowDBNull (boolean value)
public function get AllowDBNull () : boolean
public function set AllowDBNull (value : boolean)
Eigenschaftenwert
true, wenn NULL-Werte zulässig sind, andernfalls false. Der Standardwert ist true.
Beispiel
Im folgenden Beispiel wird eine neue DataColumn erstellt und deren AllowDBNull-Eigenschaft auf true festgelegt.
Private Sub AddNullAllowedColumn()
Dim column As DataColumn
column = New DataColumn("classID", _
System.Type.GetType("System.Int32"))
column.AllowDBNull = True
' Add the column to a new DataTable.
Dim table As DataTable
table = New DataTable
table.Columns.Add(column)
End Sub
private void AddNullAllowedColumn()
{
DataColumn column;
column = new DataColumn("classID",
System.Type.GetType("System.Int32"));
column.AllowDBNull = true;
// Add the column to a new DataTable.
DataTable table;
table = new DataTable();
table.Columns.Add(column);
}
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
DataColumn-Klasse
DataColumn-Member
System.Data-Namespace
Unique