DataColumn.AllowDBNull 属性

获取或设置一个值,该值指示对于属于该表的行,此列中是否允许空值。

**命名空间:**System.Data
**程序集:**System.Data(在 system.data.dll 中)

语法

声明
Public Property AllowDBNull As Boolean
用法
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)

属性值

如果允许空值,则为 true;否则为 false。默认为 true

示例

下面的示例创建新 DataColumn 并将其 AllowDBNull 属性设置为 true

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

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

DataColumn 类
DataColumn 成员
System.Data 命名空间
Unique