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 »
Q&A

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.

Post History

60%
+1 −0
Q&A Saving modified data in gridview on clicking SaveButton

I am struggling to do a save button in C# Windows Form Application where I have a GridView and I want to save all modifications I do in GridView Table(I connected it to SQL). This is the data sourc...

1 answer  ·  posted 3y ago by Cri‭  ·  edited 3y ago by Alexei‭

Question c# winforms gridview
#3: Post edited by user avatar Alexei‭ · 2021-06-30T18:54:14Z (almost 3 years ago)
added relevant tags
  • 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!
  • I am struggling to do a save button in C# Windows Form Application where I have a GridView and I want to save all modifications 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 stuck.
  • ```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!
#2: Post edited by (deleted user) · 2021-06-30T08:05:02Z (almost 3 years ago)
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!
#1: Initial revision by user avatar Cri‭ · 2021-06-30T07:54:14Z (almost 3 years ago)
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!
c#