所以,在这里我想要一个未绑定的列添加到已填充的数据表中,在该数据表中我有一个自定义数列,并且该数字是随机的。 我想要的是新添加的列重新安排从1开始的数字。
我使用的代码是
public void SDB()
{
datatable dt = new datatable();
dataset ds = new dataset();
SqlDataAdapter adapter = new SqlDataAdapter(command.CommandText, myConnection);
try
{
ds.Tables.Clear();
dt.Clear();
command.Connection = myConnection;
command.CommandText = "Select code from gen order by code";
myConnection.Open();
adapter.SelectCommand = command;
adapter.Fill(ds);
adapter.Fill(dt);
gridControl1.DataSource = dt;
}
catch (Exception ex)
{
MessageBox.Show("error" + ex);
}
finally
{
myConnection.Close();
}
}