in reply to DBD::Sybase and ?-style Placeholders
With this:my @vals2 = do_sql($server, qq#select * from ct_countries where code = ?#, '000');
I seem to remember having this same problem and I stumbled on this working. Don't ask me why it doesn't work the "normal" way, but I use it all the time.my @vals2 = do_sql($server, qq#select * from ct_countries where code=?#, '000');
|
|---|