DataTable 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataTable 클래스의 새 인스턴스를 초기화합니다.
오버로드
DataTable() |
인수를 사용하지 않고 DataTable 클래스의 새 인스턴스를 초기화합니다. |
DataTable(String) |
지정된 테이블 이름을 사용하여 DataTable 클래스의 새 인스턴스를 초기화합니다. |
DataTable(SerializationInfo, StreamingContext) |
사용되지 않음.
serialize된 데이터를 사용하여 DataTable 클래스의 새 인스턴스를 초기화합니다. |
DataTable(String, String) |
지정된 테이블 이름과 네임스페이스를 사용하여 DataTable 클래스의 새 인스턴스를 초기화합니다. |
DataTable()
- Source:
- DataTable.cs
- Source:
- DataTable.cs
- Source:
- DataTable.cs
인수를 사용하지 않고 DataTable 클래스의 새 인스턴스를 초기화합니다.
public:
DataTable();
public DataTable ();
Public Sub New ()
예제
다음 예제에서는 및 DataRow를 사용하여 새 DataColumnDataTable 를 만들고 컨트롤에 DataGridView 표시합니다.
private void MakeDataTableAndDisplay()
{
// Create new DataTable.
DataTable table = new DataTable();
// Declare DataColumn and DataRow variables.
DataColumn column;
DataRow row;
// Create new DataColumn, set DataType, ColumnName
// and add to DataTable.
column = new DataColumn();
column.DataType = System.Type.GetType("System.Int32");
column.ColumnName = "id";
table.Columns.Add(column);
// Create second column.
column = new DataColumn();
column.DataType = Type.GetType("System.String");
column.ColumnName = "item";
table.Columns.Add(column);
// Create new DataRow objects and add to DataTable.
for(int i = 0; i < 10; i++)
{
row = table.NewRow();
row["id"] = i;
row["item"] = "item " + i;
table.Rows.Add(row);
}
// Set to DataGrid.DataSource property to the table.
dataGrid1.DataSource = table;
}
Private Sub MakeDataTableAndDisplay()
' Create new DataTable.
Dim table As New DataTable
' Declare DataColumn and DataRow variables.
Dim column As DataColumn
Dim row As DataRow
' Create new DataColumn, set DataType, ColumnName
' and add to DataTable.
column = New DataColumn
column.DataType = System.Type.GetType("System.Int32")
column.ColumnName = "id"
table.Columns.Add(column)
' Create second column.
column = New DataColumn
column.DataType = Type.GetType("System.String")
column.ColumnName = "item"
table.Columns.Add(column)
' Create new DataRow objects and add to DataTable.
Dim i As Integer
For i = 0 To 10
row = table.NewRow
row("id") = i
row("item") = "item " & i
table.Rows.Add(row)
Next i
' Set to DataGrid.DataSource property to the table.
DataGrid1.DataSource = table
End Sub
설명
생성자는 개체의 DataTable 모든 속성에 대한 초기 값을 설정합니다. 다음 표에서는 속성 및 해당 기본값을 보여 있습니다. 의 instance DataTable 만들어지면 다음 읽기/쓰기 속성이 초기 값으로 설정됩니다.
속성 | 기본값 |
---|---|
CaseSensitive | 부모 DataSet와 같으며, 부모 에 속하는 경우 입니다. 그렇지 않으면 false 입니다. |
DisplayExpression | 빈 문자열("") |
로캘 | 부모 DataSet 개체의 CultureInfo (속성에서 Locale 반환)와 동일하며, 부모가 없으면 기본값은 현재 시스템 CultureInfo입니다. |
MinimumCapacity | 행 50개. |
속성에 별도 호출을 통해 이러한 속성의 값을 변경할 수 있습니다.
추가 정보
적용 대상
DataTable(String)
- Source:
- DataTable.cs
- Source:
- DataTable.cs
- Source:
- DataTable.cs
지정된 테이블 이름을 사용하여 DataTable 클래스의 새 인스턴스를 초기화합니다.
public:
DataTable(System::String ^ tableName);
public DataTable (string? tableName);
public DataTable (string tableName);
new System.Data.DataTable : string -> System.Data.DataTable
Public Sub New (tableName As String)
매개 변수
- tableName
- String
테이블에 지정할 이름입니다. tableName
이 null
또는 빈 문자열이면 DataTableCollection에 테이블이 추가될 때 기본 이름이 지정됩니다.
예제
다음 예제에서는 를 만들고 DataTable 컨트롤에 DataGridView 표시합니다.
private void MakeDataTableAndDisplay()
{
// Create new DataTable.
DataTable table = new DataTable("table");
// Declare DataColumn and DataRow variables.
DataColumn column;
DataRow row;
// Create new DataColumn, set DataType,
// ColumnName and add to DataTable.
column = new DataColumn();
column.DataType = System.Type.GetType("System.Int32");
column.ColumnName = "id";
table.Columns.Add(column);
// Create second column.
column = new DataColumn();
column.DataType = Type.GetType("System.String");
column.ColumnName = "item";
table.Columns.Add(column);
// Create new DataRow objects and add to DataTable.
for(int i = 0; i < 10; i++)
{
row = table.NewRow();
row["id"] = i;
row["item"] = "item " + i;
table.Rows.Add(row);
}
// Set to DataGrid.DataSource property to the table.
dataGrid1.DataSource = table;
}
Private Sub MakeDataTableAndDisplay()
' Create new DataTable.
Dim table As New DataTable("table")
' Declare DataColumn and DataRow variables.
Dim column As DataColumn
Dim row As DataRow
' Create new DataColumn, set DataType,
' ColumnName and add to DataTable.
column = New DataColumn
column.DataType = System.Type.GetType("System.Int32")
column.ColumnName = "id"
table.Columns.Add(column)
' Create second column.
column = New DataColumn
column.DataType = Type.GetType("System.String")
column.ColumnName = "item"
table.Columns.Add(column)
' Create new DataRow objects and add to DataTable.
Dim i As Integer
For i = 0 To 10
row = table.NewRow
row("id") = i
row("item") = "item " & i
table.Rows.Add(row)
Next i
' Set to DataGrid.DataSource property to the table.
DataGrid1.DataSource = table
End Sub
추가 정보
적용 대상
DataTable(SerializationInfo, StreamingContext)
- Source:
- DataTable.cs
- Source:
- DataTable.cs
- Source:
- DataTable.cs
주의
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
serialize된 데이터를 사용하여 DataTable 클래스의 새 인스턴스를 초기화합니다.
protected:
DataTable(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected DataTable (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected DataTable (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.DataTable : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.DataTable
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Data.DataTable : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.DataTable
Protected Sub New (info As SerializationInfo, context As StreamingContext)
매개 변수
- info
- SerializationInfo
데이터 집합에 대한 직렬화된 데이터입니다.
- context
- StreamingContext
직렬화된 스트림에 대한 컨텍스트 정보입니다.
- 특성
예외
.NET 7 이상 버전만: info
이진 데이터를 포함합니다.
설명
이 생성자 구현 DataTable 은 에 ISerializable필요합니다.
추가 정보
적용 대상
DataTable(String, String)
- Source:
- DataTable.cs
- Source:
- DataTable.cs
- Source:
- DataTable.cs
지정된 테이블 이름과 네임스페이스를 사용하여 DataTable 클래스의 새 인스턴스를 초기화합니다.
public:
DataTable(System::String ^ tableName, System::String ^ tableNamespace);
public DataTable (string? tableName, string? tableNamespace);
public DataTable (string tableName, string tableNamespace);
new System.Data.DataTable : string * string -> System.Data.DataTable
Public Sub New (tableName As String, tableNamespace As String)
매개 변수
- tableName
- String
테이블에 지정할 이름입니다. tableName
이 null
또는 빈 문자열이면 DataTableCollection에 테이블이 추가될 때 기본 이름이 지정됩니다.
- tableNamespace
- String
DataTable
에 저장된 데이터의 XML 표현에 대한 네임스페이스입니다.
추가 정보
적용 대상
.NET