Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Variable is filled with column name not data, can't figure out why.

by grep (Monsignor)
on Jul 17, 2007 at 03:20 UTC ( [id://626956]=note: print w/replies, xml ) Need Help??


in reply to Variable is filled with column name not data, can't figure out why.

Straight from the DBI Docs:
With most drivers, placeholders can't be used for any element of a statement that would prevent the database server from validating the statement and creating a query execution plan for it. For example: "SELECT name, age FROM ?" # wrong (will probably fail) "SELECT name, ? FROM people" # wrong (but may not 'fail')

So you'll need to change your code to:

$sth = $dbh->prepare(qq~select $rating from FanRatings where Title = ? +~) or die $DBI::errstr; $sth->execute($filename) or die $DBI::errstr;

Replies are listed 'Best First'.
Re^2: Variable is filled with column name not data, can't figure out why.
by Eagle_f90 (Acolyte) on Jul 17, 2007 at 23:02 UTC
    Now that you point that out I remember reading it last week when learning about the place holders. It just never poped back to me as the problem. Thanks for the help!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (2)
As of 2024-04-26 00:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found