Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Perl Not returning SQL query result

by Anonymous Monk
on May 12, 2021 at 15:34 UTC ( [id://11132494]=note: print w/replies, xml ) Need Help??


in reply to Perl Not returning SQL query result

prepare simply evaluates the SQL text to create a reusable handle which can then be used to execute the same query any number of times without evaluating the SQL text again. You must then execute the query, possibly supplying a list of values for any ? placeholders which appear, which will be used in this particular execution of the prepared query. Now, you can fetch the results. (For simple, one-time queries, this can simply be done in one step: prepare, then execute, and return the results-handle.)

Replies are listed 'Best First'.
Re: Reaped: Re: Perl Not returning SQL query result
by LanX (Saint) on May 12, 2021 at 18:56 UTC
    ehm ...

    Title Re: Perl Not returning SQL query result Author Anonymous Monk Reputation 0 Reason for reaping Admin. Votes (keep/reap/edit) 0/0/0

    ... what?

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery

      wups. sorry. hit the button on the wrong node. restored.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (6)
As of 2024-03-29 14:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found