Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: ADO, multiple statements and Perl

by mpeppler (Vicar)
on Nov 24, 2003 at 16:00 UTC ( [id://309562]=note: print w/replies, xml ) Need Help??


in reply to ADO, multiple statements and Perl

(any other comment or criticism on the code is warmly welcome)
I'll point out a SQL bug in your code:
my $sql = << "__SQL__"; declare \@AZIONE int; set \@AZIONE = (SELECT id FROM desAz WHERE az LIKE 'XXXX%' ); select * from desCc where id = \@AZIONE; __SQL__
It is possible that SELECT id FROM desAz WHERE az like '...' could return more than one row, @AZIONE will get set to the last value returned. That's one of the reasons why using a JOIN here would be a lot better.

Michael

Replies are listed 'Best First'.
Re: Re: ADO, multiple statements and Perl
by l3nz (Friar) on Nov 24, 2003 at 16:09 UTC
    Yes, I know; in fact the problem does not arise for the very data that area in the "original" query that I used when developing. In the case it should, it means that such data is corrupted and I want everything to abend and be notified when looking at the logs. Anyway thanks.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (7)
As of 2024-04-19 09:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found