DataColumn.AllowDBNull Propriété

Définition

Obtient ou définit une valeur qui indique si les valeurs null sont autorisées dans cette colonne pour les lignes qui appartiennent à la table.

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

Valeur de propriété

true si les valeurs null sont autorisées ; sinon, false. La valeur par défaut est true.

Attributs

Exemples

L’exemple suivant crée un nouveau DataColumn et définit sa AllowDBNull propriété sur 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

S’applique à

Voir aussi