in reply to Re: Answer: What are placeholders in DBI, and why would I want to use them?
in thread What are placeholders in DBI, and why would I want to use them?
You can, however, do something along the lines of: 01 my $sql = '... WHERE foo IN (' . join(',', ('?') x scalar( @values )) . ') ...'; in order to generate the proper placeholder-based statement that you can then pass your parameters into.
Only if you will have the same number of parameters for each binding; and know that number a priori when you prepare the statement.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Answer: What are placeholders in DBI, and why would I want to use them?
by MidLifeXis (Monsignor) on Dec 30, 2015 at 17:43 UTC |