in reply to I think I'm starting to get it
An example:
Hence, the quadruple bachslashes are needed because we have two programs, Perl and database, that need them escaped.my $string = "C:\\\\WINDOWS\\\\Desktop"; # $string is stored as "C:\\WINDOWS\\Desktop" DBI->somemethod($param1, $string); # Equivalent to DBI->somemethod($param1, 'C:\\WINDOWS\\Desktop')<BR>
|
|---|