Lines Matching refs:dbc
55 var $dbc = NULL; variable in Interop_Client
68 $this->dbc = DB::connect($this->DSN, true);
70 if (DB::isError($this->dbc)) {
71 echo $this->dbc->getMessage();
72 $this->dbc = NULL;
113 $res = $this->dbc->query("update endpoints set status = 0 where class='$test'");
121 …$res = $this->dbc->query("update endpoints set endpointURL='{$v->endpointURL}', wsdlURL='{$v->wsdl…
123 …$res = $this->dbc->query("insert into endpoints (endpointName,endpointURL,wsdlURL,class) values('{…
203 $db_ep = $this->dbc->getAll($sql,NULL, DB_FETCHMODE_ASSOC );
233 $results = $this->dbc->getAll($sql,NULL, DB_FETCHMODE_ASSOC );
275 $this->dbc->quote($test_name);
277 $res = $this->dbc->query($sql);
286 $this->dbc->quote($test_name).",".
287 $this->dbc->quote($success).",".
288 $this->dbc->quote($error).",".
289 ($wire?$this->dbc->quote($wire):"''").")";
291 $res = $this->dbc->query($sql);
665 $results = $this->dbc->getAll($sql);
772 … $results = $this->dbc->getAll("select * from results where id=$id",NULL, DB_FETCHMODE_ASSOC );