http://www.perlmonks.org?node_id=1003919


in reply to Re^2: Need help escaping literal string
in thread Need help escaping literal string

mrras25:

That's why davido mentioned placeholders. It's something like:

# Prepare a statement... my $sth = $dbh->prepare("insert into dbtable (vol) values (?)"); my $funky_string = "/vol/enycmmcfl01b_ssd2_home_1b_a/CBirbigl$'s"; $sth->execute($funky_string);

This way, you don't have to worry about the odd characters inside your statement. Building your own statements like you were trying to do just leads to the difficulties you're experiencing. That's why placeholders were invented.

...roboticus

When your only tool is a hammer, all problems look like your thumb.

Replies are listed 'Best First'.
Re^4: Need help escaping literal string
by mrras25 (Acolyte) on Nov 15, 2012 at 04:07 UTC

    OUTSTANDING folks thank you for getting back to me I will give that a whirl and see how that flows...

    Again thanks all