Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: prepare statement within DBI

by atcroft (Abbot)
on Aug 25, 2004 at 15:13 UTC ( [id://385699]=note: print w/replies, xml ) Need Help??


in reply to prepare statement within DBI

Correct me if I am wrong, but basically you're asking if you can do something on the order of:

$sth = $dbh->prepare("SELECT COUNT(*) FROM ?"); foreach my $table_name (qw(table_one table_two)) { $sth->execute($table_name); my $rowcount = $sth->fetchrow_array; print "Number of rows in $table_name: $rowcount\n"; }

According to Chapter 5 ("Interacting with the Database") of Programming the Perl DBI (by Alligator Descartes and Tim Bunce),

"On most databases, this statement (statement on p.123, similar to above) would actually fail to parse the prepare() call, because placeholders can generally be used only for literal values. This is because the database needs enough information to create the query execution plan, and it can't do that with incomplete information (e.g., if it doesn't know the name of the table)." (p.124)

Hope that helps.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://385699]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (8)
As of 2024-04-25 11:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found