Click here to Skip to main content
15,885,165 members
Please Sign up or sign in to vote.
2.33/5 (2 votes)
See more:
How dynamically add columns to sql datatable?
Columns counts may be different.it is not defined.
Posted
Updated 24-Mar-13 0:57am
v2
Comments
Maciej Los 24-Mar-13 6:35am    
Please, be more specific and provide more details. What you mean "dynamically add columns"?
What have you done till now?

1 solution

Basically you should use SQL command ALTER like this:
C#
using (DbConnection connection = new SqlConnection("Your connection string")) {
    connection.Open();
    using (DbCommand command = new SqlCommand("alter table [YourTableName] add [YourColumnName] int default 0 NOT NULL")) {
        command.Connection = connection;
        command.ExecuteNonQuery();
    }
}


For more precisely answer we need more details like Maciej Los mentioned.
 
Share this answer
 
v4
Comments
Daqdibi 24-Mar-13 7:22am    
Yes,like this.i will create sql database datatable, which columns will be selecting winform rows from gridview.So, the columns will be different.
Thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900