Lines Matching refs:getDB

50         $resid = $this->sqlitehelper->getDB()->query($query, $cid);
54 if ($this->sqlitehelper->getDB()->res2count($resid) == 0) {
57 $result = $this->sqlitehelper->getDB()->res2arr($resid);
88 $res = $this->sqlitehelper->getDB()->query($sql,$args);
89 $res = $this->sqlitehelper->getDB()->res2row($res,0);
109 $this->sqlitehelper->getDB()->query($query,
146 $this->sqlitehelper->getDB()->query($query,
166 $res = $this->sqlitehelper->getDB()->query(
172 $cid = $this->sqlitehelper->getDB()->res2single($res);
195 return (bool) $this->sqlitehelper->getDB()->query($query, $cid);
207 return (bool) $this->sqlitehelper->getDB()->query($sql,$pid);
220 return (bool) $this->sqlitehelper->getDB()->query($query, $status, $cid);
240 $res = $this->sqlitehelper->getDB()->query($sql, $comment->getPid());
241 $entry = $this->sqlitehelper->getDB()->res2row($res,0);
283 $res = $this->sqlitehelper->getDB()->query($sql, $comment->Pid());
284 $rows = $this->sqlitehelper->getDB()->res2arr($res);
343 $this->sqlitehelper->getDB()->query($sql,$pid,strtolower($mail));
349 $this->sqlitehelper->getDB()->query($sql,strtolower($mail),$optin,md5(time()));
353 $this->sqlitehelper->getDB()->query($sql,strtolower($mail),$optin,md5(time()));
357 $res = $this->sqlitehelper->getDB()->query($sql,strtolower($mail));
358 $row = $this->sqlitehelper->getDB()->res2row($res,0);
362 $this->sqlitehelper->getDB()->query($sql,strtolower($mail));
381 $res = $this->sqlitehelper->getDB()->query($sql, $key);
382 $row = $this->sqlitehelper->getDB()->res2row($res);
403 $res = $this->sqlitehelper->getDB()->query($sql, $pid, $mail);
404 $upd = $this->sqlitehelper->getDB()->countChanges($res);
425 $res = $this->sqlitehelper->getDB()->query($sql,$key);
426 $upd = $this->sqlitehelper->getDB()->countChanges($res);
606 $res = $this->sqlitehelper->getDB()->query($sql,$args);
607 $res = $this->sqlitehelper->getDB()->res2arr($res);
650 $types = $this->sqlitehelper->getDB()->quote_and_join($types,',');
656 $this->sqlitehelper->getDB()->quote_and_join($blogs,
668 $res = $this->sqlitehelper->getDB()->query($query);
670 if(!$this->sqlitehelper->getDB()->res2count($res)) return false; // no results found
671 $res = $this->sqlitehelper->getDB()->res2arr($res);