Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como faço para confirmar as alterações que fiz em um DataTable na tabela da qual o peguei?


Não se trata de manter a conexão aberta, basta usar o Command Builder, é o mesmo com o MySql, acredito.
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;
   }

Agora para a atualização:você pode usar um novo adaptador também, mas então você tem que dar a ele um comando select, baseado nisso o construtor de comandos fará os comandos Inserir, Atualizar e Excluir.
    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);
        }
    }