DataColumn.AllowDBNull Vlastnost

Definice

Získá nebo nastaví hodnotu, která označuje, zda jsou hodnoty null povoleny v tomto sloupci pro řádky, které patří do tabulky.

public:
 property bool AllowDBNull { bool get(); void set(bool value); };
public bool AllowDBNull { get; set; }
[System.Data.DataSysDescription("DataColumnAllowNullDescr")]
public bool AllowDBNull { get; set; }
member this.AllowDBNull : bool with get, set
[<System.Data.DataSysDescription("DataColumnAllowNullDescr")>]
member this.AllowDBNull : bool with get, set
Public Property AllowDBNull As Boolean

Hodnota vlastnosti

truepokud hodnoty null jsou povoleny; v opačném případě . false Výchozí formát je true.

Atributy

Příklady

Následující příklad vytvoří nový DataColumn a nastaví jeho AllowDBNull vlastnost na true.

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);
}
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

Platí pro

Viz také