IOT Virtual Conference - Register now to book your ticket and get updates
x
CONGRATULATIONS! C# Corner Q1, 2021 MVPs Announced
Why Join
Become a member
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
C# Corner Home
Technologies
Monthly Leaders
ASK A QUESTION
Forumguidelines
man alman
2k
7
7k
saving in bindingsource
May 23 2013 4:41 AM
good day..
any one can help me>>
connection
new SqlConnection("Data Source=\\");
SqlDataAdapter customersTableAdapter =
new SqlDataAdapter("Select * from Customer", connectionString);
DataTable customerTable = new DataTable();
customersTableAdapter.Fill(customerTable);
bindingSource1.DataSource = customerTable;
i made save button with code
private void button6_Click(object sender, EventArgs e)
{
this.bindingSource1.EndEdit();
this.customerTableAdapter.Update(dataSet1.customer);
}
but it's not working what is the solution
please reply soon
Reply
Answers (
0
)
Need Code For listview to display various fields
data insertion issue