Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: problems with DBI and am oracle statement

by serf (Chaplain)
on Jan 11, 2006 at 13:38 UTC ( [id://522439]=note: print w/replies, xml ) Need Help??


in reply to problems with DBI and am oracle statement

You have nested single quotes (')s

I'm sorry I don't currently have access to a database to test this against, but I believe this should work:

my $sth = $dbh->prepare(q~ select smt.uniqueid, smt.creationtime, att.name, att.val, gsm.msisdn from dagenericsmt smt, dagenericsmtattribute att, dagsmproduct gsm where smt.uniqueid = att.genericsmt_uniqueid and smt.product_uniqueid = gsm.uniqueid and smt.smtstatus=2 and smt.smtcommand=3 and att.name in ('GSM/Cur/IMSI','GSM/Rpl/IMSI') and smt.acktime is null order by smt.uniqueid ~)
Also - when you're posting code - if you use <code> ... </code> tags around the code it will format it correctly for you and make it downloadable.

It's also easier for us (and you) to read if you can split it up and indent it some logical way. :o) Update: (like dragonchild's *beautiful* example below - definitely gets my ++!)

Replies are listed 'Best First'.
Re^2: problems with DBI and am oracle statement
by Alex_T2 (Initiate) on Jan 11, 2006 at 13:50 UTC
    thx alot serv your q~ ~ stuff works
    kind regards

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (2)
As of 2024-04-25 21:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found