好的,我有这个:
Dim sql As String = "SELECT * FROM Articles"
dAdapter = New OleDbDataAdapter(sql, connection)
dSet = New DataSet("tempDatatable")
With connection
.Open()
dAdapter.Fill(dSet, "Articles_table")
.Close()
End With
With DataGridView1
.DataSource = dSet
.DataMember = "Articles_table"
End With
我想知道是否有任何可能的方法将第一列定义为主键。我环顾四周,但每个人都在使用手动数据表来填充数据网格。由于我使用的是数据库,因此我不知道如何设置主键。我需要一些帮助。
答案 0 :(得分:7)
您可以使用以下内容向数据表添加主键:
var table = dSet.Tables["Articles_table"];
table.PrimaryKey = new DataColumn[] { table.Columns[0] };
抱歉,刚刚意识到问题是用vb.net标记的,而不是c#。 VB.net将是:
Dim table = dSet.Tables("Articles_table")
table.PrimaryKey = New DataColumn() {table.Columns(0)}
答案 1 :(得分:7)
您必须将DataAdapter
的{{3}}设置为AddWithKey
:
var table = new DataTable();
using(var con = new SqlConnection(connectionString))
using (var da = new SqlDataAdapter("SELECT * FROM Articles", con))
{
da.MissingSchemaAction = MissingSchemaAction.AddWithKey
da.Fill(table);
}
编辑:VB.NET:
Dim table = New DataTable()
Using con = New SqlConnection(connectionString)
Using da = New SqlDataAdapter("SELECT * FROM Articles", con)
da.MissingSchemaAction = MissingSchemaAction.AddWithKey
da.Fill(table)
End Using
End Using
现在,将完成架构的必要列和主键信息自动添加到DataTable
。
答案 2 :(得分:0)
请这样做。
Dim objTmpTable As New DataTable
objTmpTable.PrimaryKey = New DataColumn() {objTmpTable.Columns(0)}
dgrdMeasure.DataSource = objTmpTable
dgrdMeasure.DataBind()
也就是说,在分配给Grid之前,只需设置主键。