How to update the mysql table using sql server table data in c#? -


so have table clienti in mysql , clientiimporti in sql server , want compare @ first elements of rows of clienti elements of rows of clientiimporti if equal have overwrite elements of rows of table clienti in mysql. thinking of using update not sure do. little thank you. newbie in c#. in advance

int lengthclienti = mysqlsetclienti.tables["clienti"].rows.count;  int columnclienti = 4;      //loop through rows of sql server data table , add mysql dataset      (int = 0; <= lengthclienti - 1; i++)//row {     (int j = 0; <= columnclienti; j++)//column     {         if (sqldataset.tables["clientiimporti"].rows[i][j].tostring() == mysqlsetclienti.tables["clienti"].rows[i][j].tostring())         {          }     } } 


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -