using qstr (quoting of strings) from ADOdb 5.11, it might fix problems reported by Anthony Messina

This commit is contained in:
Ralf Becker 2010-09-11 07:47:40 +00:00
parent c5f77ca982
commit caf6d694c2

View File

@ -253,25 +253,28 @@ select viewname,'V' from pg_views where viewname like $mask";
return $ret; return $ret;
} }
/*
// if magic quotes disabled, use pg_escape_string() // if magic quotes disabled, use pg_escape_string()
function qstr($s,$magic_quotes=false) function qstr($s,$magic_quotes=false)
{ {
if (is_bool($s)) return $s ? 'true' : 'false';
if (!$magic_quotes) { if (!$magic_quotes) {
if (ADODB_PHPVER >= 0x5200) {
return "'".pg_escape_string($this->_connectionID,$s)."'";
}
if (ADODB_PHPVER >= 0x4200) { if (ADODB_PHPVER >= 0x4200) {
return "'".pg_escape_string($s)."'"; return "'".pg_escape_string($s)."'";
} }
if ($this->replaceQuote[0] == '\\'){ if ($this->replaceQuote[0] == '\\'){
$s = adodb_str_replace(array('\\',"\0"),array('\\\\',"\\\0"),$s); $s = adodb_str_replace(array('\\',"\0"),array('\\\\',"\\\\000"),$s);
} }
return "'".str_replace("'",$this->replaceQuote,$s)."'"; return "'".str_replace("'",$this->replaceQuote,$s)."'";
} }
// undo magic quotes for " // undo magic quotes for "
$s = str_replace('\\"','"',$s); $s = str_replace('\\"','"',$s);
return "'$s'"; return "'$s'";
} }
*/
// Format date column in sql string given an input format that understands Y M D // Format date column in sql string given an input format that understands Y M D