Table NameEach line of the output file will be prepended with insert into <tablename> values , when a name is typed into the Table Name box.For example, if an input file contains:
(1, "Humphrey", "Bogart");
(2, "Ingrid", "Bergman"); (3, "Paul", "Henreid"); (4, "Peter", "Lorre"); (5, "Sydney", "Greenstreet"); the output file, when the word actors is typed into the Table Name box (and the Align Output control is selected) will contain:
insert into actors values (1, "Humphrey", "Bogart");
insert into actors values (2, "Ingrid", "Bergman"); insert into actors values (3, "Paul", "Henreid"); insert into actors values (4, "Peter", "Lorre"); insert into actors values (5, "Sydney", "Greenstreet"); |

