Insert data from database to another database table

Comparing #1 with #2

Revision #2 was created by Kostas Apazidis (KonApaz) Kostas Apazidis (KonApaz) on May 27, 2014, 11:42:42 AM.

-

Content

[...]
A simple way but writing a lot of code is using three nested for

- each table
- each row
- each column
s (we could remove the last nested for, using agile code)




If you create the above algorithm using static code you have to modify the code each time you modify the database schema (tables or columns)
[...]