How to use C# to add a column for a table of sql server?
For example, I want to execute the following sql in C# code:
alter table [Product] add [Pr
SqlCommand cmd2 = new SqlCommand(); // create columns for healed cmd2 = new SqlCommand("ALTER TABLE TotalHeals ADD "+Healee+" INT", openCon); cmd2.ExecuteNonQuery();
Funny how SqlCommand is different then DBCommand