in reply to Perl/DBI/Oracle and strings with spaces
There is 0 reason why this should not work, especially if you're doing it against DBD::Oracle. I do stuff like this every day without a problem. Try adding some additional error checking and see if that doesn't help you locate your problem.my $looking_for = 'some string with spaces'; my $sth = $dbh->prepare('select field from table where key=?'); $sth->execute($looking_for);
|
|---|