in reply to Re: Perl DBI + Access bind issues
in thread Perl DBI + Access bind issues
For example:
my $sth = $dbh->prepare( "select ?,? from ? where ? = ?" ); $sth->execute( '[is Active?]' ,'[is Deleted?]', '[is Deleted?]', 1 ); my $array_ref = $sth->fetchall_arrayref;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Perl DBI + Access bind issues
by KurtSchwind (Chaplain) on Dec 12, 2008 at 14:13 UTC |