You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$!dbh.execute("SET log_min_messages TO $level");
$sth = $!dbh.execute( "SHOW $var-name" );
I expected DBIish via DBDish::Pg to accept ? placeholders in the above.
Only with the pause caused by my error, did I consider that SET might reasonably take two placeholders.
The text was updated successfully, but these errors were encountered:
Right now everything goes through PQexecPrepared which is limited to CRUD type statements. We should have a fall-back mode for Pg which does parameter quoting/injecting and calls PQexec.
I expected
DBIish
viaDBDish::Pg
to accept?
placeholders in the above.Only with the pause caused by my error, did I consider that
SET
might reasonably take two placeholders.The text was updated successfully, but these errors were encountered: