Copy one table from MSAccess to MySql via .NET

  • Thread starter Thread starter Mauro D.
  • Start date Start date
M

Mauro D.

from the subject...

Do I have to copy the table into a datatable and then copy it to Mysql
via two different DataAdapter?

Thanks
Mauro
 
Mauro,

When you use a dataatable, than using one has no sense.

However why do you not copy streaming using the datareader and
command.executenonquery?

Cor
 
Cor said:
Mauro,

When you use a dataatable, than using one has no sense.

However why do you not copy streaming using the datareader and
command.executenonquery?

Cor
I think that this solution (streaming copy) will be used!
thanks a lot.

Mauro
 
Back
Top