in reply to Re^2: inserting and showing data from an MS Access database
in thread inserting and showing data from an MS Access database
my $sth_ins = $dbh->prepare("INSERT ...."); my $sth_sel = $dbh->prepare("SELECT ...."); ... $sth_ins->execute(); ... $sth_sel->execute(); while( my $row = $sth_sel->fetchrow_arrayref() ){ ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: inserting and showing data from an MS Access database
by Anonymous Monk on Apr 11, 2006 at 21:58 UTC | |
|
Re^4: inserting and showing data from an MS Access database
by Anonymous Monk on Apr 12, 2006 at 05:10 UTC | |
by davidrw (Prior) on Apr 12, 2006 at 12:51 UTC | |
by Anonymous Monk on Apr 12, 2006 at 22:10 UTC | |
by Anonymous Monk on Apr 12, 2006 at 22:26 UTC | |
by Anonymous Monk on Apr 12, 2006 at 22:50 UTC |