Mysql
 sql >> Database >  >> RDS >> Mysql

Come posso vincolare le modifiche che ho apportato a un DataTable nella tabella da cui l'ho acquisito?

Non si tratta di mantenere la connessione aperta, devi solo usare Command Builder, è lo stesso con MySql credo.

private MySqlDataAdapter adapt;
private DataSet someDataSet;
someDataSet = new DataSet();

    public DataSet GetCustomerData(int customerId)
    {
        using(MySqlConnection connect = new MySqlConnection(ConnString))
        {
            connect.Open();
            MySqlCommand comm = new MySqlCommand("SELECT * FROM customers WHERE Id = @0", connect);
            someDataSet.Tables.Add("CustomersTable");
            comm.Parameters.AddWithValue("@0", customerId);
            adapt.SelectCommand = comm;
            adapt.Fill(someDataSet.Tables["CustomersTable"]);
        }

        return someDataSet;
   }

Ora per l'aggiornamento:potresti usare anche un nuovo adattatore, ma poi devi dargli un comando select, in base al fatto che il commandbuilder eseguirà i comandi Inserisci, Aggiorna ed Elimina.

    public void UpdateTable(DataTable table, int customerId)
    {
        using (MySqlConnection connect = new MySqlConnection(ConnString))
        {
            connect.Open();
            MySqlCommandBuilder commbuilder = new MySqlCommandBuilder(adapt);
            adapt.SelectCommand = new MySqlCommand("SELECT * FROM customers WHERE Id = "+customerId, connect); //or use parameters.addwithvalue
            adapt.Update(table);
        }
    }