Lines Matching refs:dbc
57 var $dbc = NULL; variable in Interop_Client
70 $this->dbc = DB::connect($this->DSN, true);
72 if (DB::isError($this->dbc)) {
73 echo $this->dbc->getMessage();
74 $this->dbc = NULL;
115 $res = $this->dbc->query("update endpoints set status = 0 where class='$test'");
123 …$res = $this->dbc->query("update endpoints set endpointURL='{$v->endpointURL}', wsdlURL='{$v->wsdl…
125 …$res = $this->dbc->query("insert into endpoints (endpointName,endpointURL,wsdlURL,class) values('{…
205 $db_ep = $this->dbc->getAll($sql,NULL, DB_FETCHMODE_ASSOC );
235 $results = $this->dbc->getAll($sql,NULL, DB_FETCHMODE_ASSOC );
277 $this->dbc->quote($test_name);
279 $res = $this->dbc->query($sql);
288 $this->dbc->quote($test_name).",".
289 $this->dbc->quote($success).",".
290 $this->dbc->quote($error).",".
291 ($wire?$this->dbc->quote($wire):"''").")";
293 $res = $this->dbc->query($sql);
667 $results = $this->dbc->getAll($sql);
774 … $results = $this->dbc->getAll("select * from results where id=$id",NULL, DB_FETCHMODE_ASSOC );