escaping PG SQL correctly
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Thu, 12 Nov 2015 07:12:05 +0000 (08:12 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Thu, 12 Nov 2015 07:12:05 +0000 (08:12 +0100)
web/Obj/dbase_pgsql.phh

index 4790e8b..f4202c6 100644 (file)
@@ -25,7 +25,7 @@
 require_once("${G_base}Obj/dbase_base.phh");
 
 $escsql_from = array( "\\",   "'"   );
-$escsql_to   = array( "\\\\", "\\'" );
+$escsql_to   = array( "\\\\", "''" );
 
 function escsql($s)
 {