Searched refs:calendarTableName (Results 1 – 2 of 2) sorted by relevance
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/ |
H A D | PDO.php | 44 public $calendarTableName = 'calendars'; variable in Sabre\\CalDAV\\Backend\\PDO 152 …$stmt = $this->pdo->prepare("SELECT " . $fields . " FROM " . $this->calendarTableName . " WHERE pr… 236 …$stmt = $this->pdo->prepare("INSERT INTO " . $this->calendarTableName . " (" . implode(', ', $fiel… 285 …$stmt = $this->pdo->prepare("UPDATE " . $this->calendarTableName . " SET " . implode(', ', $values… 308 $stmt = $this->pdo->prepare('DELETE FROM ' . $this->calendarTableName . ' WHERE id = ?'); 770 $this->calendarTableName AS calendars 846 …$stmt = $this->pdo->prepare('SELECT synctoken FROM ' . $this->calendarTableName . ' WHERE id = ?'); 915 …n, calendarid, operation) SELECT ?, synctoken, ?, ? FROM ' . $this->calendarTableName . ' WHERE id… 922 …$stmt = $this->pdo->prepare('UPDATE ' . $this->calendarTableName . ' SET synctoken = synctoken + 1…
|
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/ |
H A D | PDO.php | 50 public $calendarTableName = 'calendars'; variable in Sabre\\CalDAV\\Backend\\PDO 171 LEFT JOIN {$this->calendarTableName} ON 172 {$this->calendarInstancesTableName}.calendarid = {$this->calendarTableName}.id 261 …$stmt = $this->pdo->prepare("INSERT INTO " . $this->calendarTableName . " (synctoken, components) … 265 $this->calendarTableName . '_id_seq' 380 … $stmt = $this->pdo->prepare('DELETE FROM ' . $this->calendarTableName . ' WHERE id = ?'); 973 …$stmt = $this->pdo->prepare('SELECT synctoken FROM ' . $this->calendarTableName . ' WHERE id = ?'); 1042 …n, calendarid, operation) SELECT ?, synctoken, ?, ? FROM ' . $this->calendarTableName . ' WHERE id… 1049 …$stmt = $this->pdo->prepare('UPDATE ' . $this->calendarTableName . ' SET synctoken = synctoken + 1…
|