Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^4: Posgres batch read with DBI?

by cormanaz (Deacon)
on Jan 26, 2021 at 23:58 UTC ( [id://11127502]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Posgres batch read with DBI?
in thread Posgres batch read with DBI?

Works for me too. Thanks for the code. I still don't get the unmatched bracket error...

Replies are listed 'Best First'.
Re^5: Posgres batch read with DBI? (updated)
by AnomalousMonk (Archbishop) on Jan 27, 2021 at 02:30 UTC
    my $dbh = connectpgdb(*,*,*,*,*);
    ... unmatched bracket error...

    Just a total WAG, but if the quoted code was or was something like the actual code and not pseudo-code, remember that $, $) are Perl special (package-global) variables (see perlvar), so there are *, *) typeglobs of which they are subtypes (if that's the correct terminology).

    Win8 Strawberry 5.8.9.5 (32) Tue 01/26/2021 21:06:54 C:\@Work\Perl\monks >perl -Mstrict -Mwarnings my $dbh = # connectpgdb(*,*,*,*,*) # syntax error # connectpgdb(*,*,*,*,*)) # syntax error # connectpgdb(*,*,) # syntax error # connectpgdb(*) # syntax error # connectpgdb(*,) # compiles and runs connectpgdb(*)) # compiles and runs ; while ($dbh) { print "foo \n"; $dbh = ''; } sub connectpgdb { return $_[0]; } ^Z foo
    I can't duplicate the "unmatched bracket" error message you mention, but running under Perl version 5.30.3 vice 5.8.9 yields more error messages for my example code that are associated with the failed definition (hence absence) of $dbh, so maybe the "unmatched bracket" error is at the end of a long string | cascade of messages that begins with | stems from a syntax error.
    (In the unlikely event you're running the actual code you posted. :)


    Give a man a fish:  <%-{-{-{-<

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (6)
As of 2024-04-23 15:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found