DataColumn.AllowDBNull 속성
테이블에 속해 있는 행의 이 열에 null 값이 허용되는지 여부를 나타내는 값을 가져오거나 설정합니다.
네임스페이스: 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)
속성 값
null 값이 허용되면 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에서 지원