in reply to Re: Re: Test for number or string
in thread Test for number or string
UPDATE
Let me make sure I understand what you are saying.
I can easily download my data with no quotes in the form...
id,name,address,etc
Now I upload this same data using something like this...... and I don't have to worry about quotes, etc.?my $sql = "INSERT INTO tablename VALUES(?)"; my $sth = $dbh->prepare($sql); foreach my $record (@filedata) { $sth->execute($record); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Test for number or string
by Aristotle (Chancellor) on May 03, 2003 at 02:25 UTC |