如何使用C#爲sql server的表添加列?如何使用C#爲sql server的表添加一列?
例如,我想在C#代碼來執行下列SQL:
alter table [Product] add
[ProductId] int default 0 NOT NULL
如何使用C#爲sql server的表添加列?如何使用C#爲sql server的表添加一列?
例如,我想在C#代碼來執行下列SQL:
alter table [Product] add
[ProductId] int default 0 NOT NULL
你應該使用命令:
using (DbConnection connection = new SqlConnection("Your connection string")) {
connection.Open();
using (DbCommand command = new SqlCommand("alter table [Product] add [ProductId] int default 0 NOT NULL")) {
command.Connection = connection;
command.ExecuteNonQuery();
}
}
SqlCommand cmd2 = new SqlCommand();
// create columns for healed
cmd2 = new SqlCommand("ALTER TABLE TotalHeals ADD "+Healee+" INT", openCon);
cmd2.ExecuteNonQuery();
滑稽的SqlCommand是如何不同,那麼的DbCommand
問題和答案太明顯了。再加上一個可以運行這樣的腳本(向列表添加列)一次。是的,'SqlClient'命名空間支持DDL。 – 2016-05-22 01:51:06
@AlexKudryashev:是的,RTM-itis的一個例子是... – code4life 2016-05-22 02:05:56