In MySQL, we may use myql_escape_string. By using Zend DB adapter, what is the equiavalent function for Postgres db?
for example:
$sql = 'INSERT INTO "TableA"
(name, address) VALUES (?,?)';
$statement = $db->createStatement($sql);
$statement ->prepare();
$statement ->execute(array($val1 , $val2));
What is the function providing from Zend to escape string from the input value? Or I should use PHP like:
$statement ->execute(array(pg_escape_string($val1) , pg_escape_string($val2));
to each input value?