Home
last modified time | relevance | path

Searched refs:queryRecord (Results 1 – 20 of 20) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/
DGoogleCloudContactcenterinsightsV1SmartComposeSuggestionData.php30 public $queryRecord; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1SmartComposeSuggestionData
61 public function setQueryRecord($queryRecord) argument
63 $this->queryRecord = $queryRecord;
70 return $this->queryRecord;
DGoogleCloudContactcenterinsightsV1SmartReplyData.php30 public $queryRecord; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1SmartReplyData
61 public function setQueryRecord($queryRecord) argument
63 $this->queryRecord = $queryRecord;
70 return $this->queryRecord;
DGoogleCloudContactcenterinsightsV1ArticleSuggestionData.php33 public $queryRecord; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1ArticleSuggestionData
78 public function setQueryRecord($queryRecord) argument
80 $this->queryRecord = $queryRecord;
87 return $this->queryRecord;
DGoogleCloudContactcenterinsightsV1FaqAnswerData.php37 public $queryRecord; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1FaqAnswerData
92 public function setQueryRecord($queryRecord) argument
94 $this->queryRecord = $queryRecord;
101 return $this->queryRecord;
/plugin/sqlite/_test/
H A DSQLiteDBTest.php57 $result = $db->queryRecord($sql, ['one', 'two', 'three']);
60 $result = $db->queryRecord($sql, 'one', 'two', 'three');
65 $result = $db->queryRecord($sql, ['first' => 'one', 'second' => 'two', 'third' => 'three']);
99 $result = $db->queryRecord($sql, [4]);
/plugin/doxycode/helper/
Dbuildmanager.php114 $row = $this->db->queryRecord('SELECT * FROM Tasks WHERE TaskID = ?', [$config['taskID']]);
245 $row = $this->db->queryRecord('SELECT * FROM Tasks WHERE TaskID = ?', $id);
271 $row = $this->db->queryRecord('SELECT * FROM Jobs WHERE JobID = ?', $jobID);
300 $row = $this->db->queryRecord('SELECT Configuration FROM Tasks WHERE TaskID = ?', $taskID);
328 $row = $this->db->queryRecord('SELECT * FROM Jobs WHERE JobID = ?', $jobID);
354 $row = $this->db->queryRecord('SELECT Configuration FROM Jobs WHERE JobID = ?', $jobID);
445 $row = $this->db->queryRecord('SELECT * FROM Tasks WHERE TaskID = ?', $taskID);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
DChromeUXReport.php64 'queryRecord' => [
65 'path' => 'v1/records:queryRecord',
/plugin/statistics/_test/
DLoggerTest.php190 …$refererRecord = $this->helper->getDB()->queryRecord('SELECT * FROM referers WHERE id = ?', [$refI…
230 … $search = $this->helper->getDB()->queryRecord('SELECT * FROM search ORDER BY dt DESC LIMIT 1');
257 $session = $this->helper->getDB()->queryRecord('SELECT * FROM sessions LIMIT 1');
306 … $ipRecord = $this->helper->getDB()->queryRecord('SELECT * FROM iplocation WHERE ip = ?', [$ip]);
384 …$pageview = $this->helper->getDB()->queryRecord('SELECT * FROM pageviews ORDER BY dt DESC LIMIT 1'…
418 … $mediaLog = $this->helper->getDB()->queryRecord('SELECT * FROM media ORDER BY dt DESC LIMIT 1');
456 $edit = $this->helper->getDB()->queryRecord('SELECT * FROM edits ORDER BY dt DESC LIMIT 1');
480 … $login = $this->helper->getDB()->queryRecord('SELECT * FROM logins ORDER BY dt DESC LIMIT 1');
/plugin/questionnaire/
Dhelper.php50 return $db->queryRecord($sql, $page);
86 $record = $db->queryRecord('SELECT * FROM questionnaires WHERE page = ?', $page);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ChromeUXReport/Resource/
DRecords.php42 public function queryRecord(QueryRequest $postBody, $optParams = []) function in Google\\Service\\ChromeUXReport\\Resource\\Records
/plugin/davcal/
H A Dhelper.php540 $row = $sqlite->queryRecord($query, [$id]);
651 $row = $sqlite->queryRecord($query, array($values[0], $values[1], $values[2], $values[3]));
884 $row = $sqlite->queryRecord($query, [$calid]);
900 $row = $sqlite->queryRecord($query, [$calid]);
1151 $row = $sqlite->queryRecord($query, [$uid]);
1187 $row = $sqlite->queryRecord($query, [$calid, $uri]);
1573 $row = $sqlite->queryRecord($query, [$calid]);
1610 $row = $sqlite->queryRecord($query, [$aggregateId]);
1644 $row = $sqlite->queryRecord($query, [$url]);
1695 $row = $sqlite->queryRecord($query, [$icsFile]);
[all …]
/plugin/struct/meta/
H A DPageMeta.php42 $data = $this->sqlite->queryRecord($sql, [$this->pid]);
/plugin/struct/_test/
H A DSchemaBuilderTest.php104 $actual_schema = $this->sqlite->queryRecord("SELECT * FROM schemas");
H A DAccessTableDataDBTest.php193 $actual_saved_single = $this->sqlite->queryRecord(
/plugin/aichat/Storage/
DSQLiteStorage.php48 $record = $this->db->queryRecord('SELECT * FROM embeddings WHERE id = ?', [$chunkID]);
362 $result = $this->db->queryRecord($query, [json_encode($vector, JSON_THROW_ON_ERROR)]);
/plugin/sqlite/
H A DSQLiteDB.php226 public function queryRecord($sql, ...$params) function in dokuwiki\\plugin\\sqlite\\SQLiteDB
269 return $this->queryRecord($sql);
/plugin/approve/helper/
H A Ddb.php55 return $this->db->queryRecord($sql, $page_id);
235 $page = $this->db->queryRecord($sql, $page_id, $rev);
/plugin/watchcycle/
Daction.php142 $row = $sqlite->queryRecord('SELECT * FROM watchcycle WHERE page=?', $page);
/plugin/acknowledge/
Dhelper.php262 $record = $this->db->queryRecord($sql, $page);
/plugin/statistics/
DQuery.php156 … $result = $this->db->queryRecord($sql, [$this->tz, $this->tz, $this->from, $this->tz, $this->to]);