in reply to Re^2: Mysql and Perl Module
in thread Mysql and Perl Module

in sprintf, %s is a placeholder for a string, as in:
$a = "world"; sprintf "hello %s", $a; # results in "hello world"