我使用一列创建简单表,将其添加到新DataDatable,将新表添加到DataSet并尝试使用SqlDataAdapter将新表添加到数据库。检查SqlServer时,数据库中没有新添加的表。
DataColumn new_table_primary_col = new DataColumn("Test_ID", typeof(int));
new_table_primary_col.AutoIncrement = true;
new_table_primary_col.AutoIncrementSeed = 1;
new_table_primary_col.AutoIncrementStep = 1;
DataTable new_table = new DataTable("MyTable");
new_table.Columns.Add(new_table_primary_col);
my_dataset.Tables.Add(new_table);
sql_data_adapter.Update(my_dataset);