Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Review Suggested Edit

You can't approve or reject suggested edits because you haven't yet earned the Edit Posts ability.

Approved.
This suggested edit was approved and applied to the post almost 3 years ago by Cri‭.

0 / 255
Saving modified data in gridview on clicking SaveButton
  • I am strugglig doing a save button in C# Windows Form Application where I have a GridView and I want to save all modification I do in GridView Table(I connected it to sql). This is the data source for my database DataTable dtCustomers = new DataTable();
  • I did this so far and got stucked.
  • private void SaveButton_Click(object sender, EventArgs e)
  • {
  • string connectionString = Properties.Settings.Default.dbConnectionString;
  • SqlConnection con = new SqlConnection(connectionString);
  • using (con)
  • {
  • SqlCommand cmd = con.CreateCommand();
  • using (cmd)
  • {
  • cmd.CommandText = @"UPDATE CUSTOMERS SET " +
  • "CustomerId = @CustomerId, " +
  • "FirstName = @FirstName, " +
  • "LastName = @LastName, " +
  • "Email = @Email, " +
  • "Height = @Height, " +
  • "DateOfBirth = @DateOfBirth ";
  • cmd.Parameters.Add("@CustomerId", SqlDbType.Int, 5, "StudentID");
  • cmd.Parameters.Add("@FirstName", SqlDbType.VarChar, 50, "FirstName");
  • cmd.Parameters.Add("@LastName", SqlDbType.VarChar, 50, "LastName");
  • cmd.Parameters.Add("@Email", SqlDbType.VarChar, 1, "Email");
  • cmd.Parameters.Add("@Height", SqlDbType.Int, 50, "Height");
  • cmd.Parameters.Add("@DateOfBirth", SqlDbType.Date, 10, "DateOfBith");
  • cmd.Connection = con;
  • using (SqlDataAdapter da = new SqlDataAdapter())
  • {
  • da.UpdateCommand = cmd;
  • // da.Update();
  • }
  • }
  • }
  • Thank you for any suggestion!
  • I am strugglig doing a save button in C# Windows Form Application where I have a GridView and I want to save all modification I do in GridView Table(I connected it to sql). This is the data source for my database DataTable dtCustomers = new DataTable();
  • I did this so far and got stucked.
  • ```c#
  • private void SaveButton_Click(object sender, EventArgs e)
  • {
  • string connectionString = Properties.Settings.Default.dbConnectionString;
  • SqlConnection con = new SqlConnection(connectionString);
  • using (con)
  • {
  • SqlCommand cmd = con.CreateCommand();
  • using (cmd)
  • {
  • cmd.CommandText = @"UPDATE CUSTOMERS SET " +
  • "CustomerId = @CustomerId, " +
  • "FirstName = @FirstName, " +
  • "LastName = @LastName, " +
  • "Email = @Email, " +
  • "Height = @Height, " +
  • "DateOfBirth = @DateOfBirth ";
  • cmd.Parameters.Add("@CustomerId", SqlDbType.Int, 5, "StudentID");
  • cmd.Parameters.Add("@FirstName", SqlDbType.VarChar, 50, "FirstName");
  • cmd.Parameters.Add("@LastName", SqlDbType.VarChar, 50, "LastName");
  • cmd.Parameters.Add("@Email", SqlDbType.VarChar, 1, "Email");
  • cmd.Parameters.Add("@Height", SqlDbType.Int, 50, "Height");
  • cmd.Parameters.Add("@DateOfBirth", SqlDbType.Date, 10, "DateOfBith");
  • cmd.Connection = con;
  • using (SqlDataAdapter da = new SqlDataAdapter())
  • {
  • da.UpdateCommand = cmd;
  • // da.Update();
  • }
  • }
  • }
  • ```
  • Thank you for any suggestion!
c#
c#

Suggested almost 3 years ago by deleted user