69 $this->LastQuery=array();
70 $this->CurrentRow=array();
80 function OpenDB($Server,$User=
"",$Password=
"")
165 $quote=(bool)ini_get(
'magic_quotes_gpc');
167 $ret=addslashes($value);
179 return($this->txtError);
196 foreach($row as $Key => $Value)
207 $apice=$fieldsType[$Key][
'apice'];
208 $fValue.=$apice.$this->DBEscape($Value).$apice;
212 $OutText=
'('.$fName.
') VALUES ('.$fValue.
') ';
227 foreach($row as $Key => $Value)
229 if($c) $OutText.=
', ';
230 $apice=$fieldsType[$Key][
'apice'];
231 $OutText.=$Key.
' = '.$apice.$this->DBEscape($Value).$apice.
' ';