Click here to Skip to main content
15,903,523 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
How to submit changes in sql smo using C#?
I obtain the dataset in this way:
dataSet= db.ExecuteWithResults("Select " + tableName + ".* from " + tableName);
dataGridData.DataSource = dataSet.Tables[0];

Is there any way to submit changes in data grid to the table?

thx.
Posted
Updated 16-Jun-10 22:24pm
v2

1 solution

dataGridData.DataBind()
 
Share this answer
 

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