in reply to Re: DBI-quote doesn't like tied hashes?
in thread DBI-quote doesn't like tied hashes?
I also prefer to use placeholders, but only when I can actually use them. :) In the databases I've used, you can't use a placeholder for the table name, because the database driver doesn't have enough information to create an execution plan if it doesn't know the table name.> I prefer to use placeholders: > > my $sth = $dbh->prepare("SELECT * FROM ?");
In general, though, I heartily endorse the use of placeholders. :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: Re: DBI-quote doesn't like tied hashes?
by BBQ (Curate) on May 17, 2000 at 01:30 UTC |