in reply to how to store text file information into my sql database
It looks like your data may be tab delimited, so try changing the split parameter, like this:
while (<$fh>){ chomp; my @vals = split /\t/; $sth->execute(@vals); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to store text file information into my sql database
by hotchiwawa (Scribe) on Dec 31, 2015 at 15:08 UTC | |
by poj (Abbot) on Jan 03, 2016 at 17:44 UTC |