Lines Matching refs:pdo

43     protected $pdo;  variable in Sabre\\CalDAV\\Backend\\PDO
126 function __construct(\PDO $pdo) { argument
128 $this->pdo = $pdo;
169 $stmt = $this->pdo->prepare(<<<SQL
261 …$stmt = $this->pdo->prepare("INSERT INTO " . $this->calendarTableName . " (synctoken, components) …
264 $calendarId = $this->pdo->lastInsertId(
278 …$stmt = $this->pdo->prepare("INSERT INTO " . $this->calendarInstancesTableName . " (" . implode(',…
284 $this->pdo->lastInsertId($this->calendarInstancesTableName . '_id_seq')
336 …$stmt = $this->pdo->prepare("UPDATE " . $this->calendarInstancesTableName . " SET " . implode(', '…
361 …$stmt = $this->pdo->prepare('SELECT access FROM ' . $this->calendarInstancesTableName . ' where id…
371 …$stmt = $this->pdo->prepare('DELETE FROM ' . $this->calendarObjectTableName . ' WHERE calendarid =…
374 …$stmt = $this->pdo->prepare('DELETE FROM ' . $this->calendarChangesTableName . ' WHERE calendarid …
377 …$stmt = $this->pdo->prepare('DELETE FROM ' . $this->calendarInstancesTableName . ' WHERE calendari…
380 … $stmt = $this->pdo->prepare('DELETE FROM ' . $this->calendarTableName . ' WHERE id = ?');
389 … $stmt = $this->pdo->prepare('DELETE FROM ' . $this->calendarInstancesTableName . ' WHERE id = ?');
435 …$stmt = $this->pdo->prepare('SELECT id, uri, lastmodified, etag, calendarid, size, componenttype F…
477 …$stmt = $this->pdo->prepare('SELECT id, uri, lastmodified, etag, calendarid, size, calendardata, c…
521 $stmt = $this->pdo->prepare($query);
570 …$stmt = $this->pdo->prepare('INSERT INTO ' . $this->calendarObjectTableName . ' (calendarid, uri, …
616 …$stmt = $this->pdo->prepare('UPDATE ' . $this->calendarObjectTableName . ' SET calendardata = ?, l…
727 …$stmt = $this->pdo->prepare('DELETE FROM ' . $this->calendarObjectTableName . ' WHERE calendarid =…
847 $stmt = $this->pdo->prepare($query);
900 $stmt = $this->pdo->prepare($query);
973 …$stmt = $this->pdo->prepare('SELECT synctoken FROM ' . $this->calendarTableName . ' WHERE id = ?');
992 $stmt = $this->pdo->prepare($query);
1023 $stmt = $this->pdo->prepare($query);
1042 …$stmt = $this->pdo->prepare('INSERT INTO ' . $this->calendarChangesTableName . ' (uri, synctoken, …
1049 …$stmt = $this->pdo->prepare('UPDATE ' . $this->calendarTableName . ' SET synctoken = synctoken + 1…
1098 …$stmt = $this->pdo->prepare("SELECT " . $fields . " FROM " . $this->calendarSubscriptionsTableName…
1167 …$stmt = $this->pdo->prepare("INSERT INTO " . $this->calendarSubscriptionsTableName . " (" . implod…
1170 return $this->pdo->lastInsertId(
1218 …$stmt = $this->pdo->prepare("UPDATE " . $this->calendarSubscriptionsTableName . " SET " . implode(…
1237 …$stmt = $this->pdo->prepare('DELETE FROM ' . $this->calendarSubscriptionsTableName . ' WHERE id = …
1260 …$stmt = $this->pdo->prepare('SELECT uri, calendardata, lastmodified, etag, size FROM ' . $this->sc…
1289 …$stmt = $this->pdo->prepare('SELECT id, calendardata, uri, lastmodified, etag, size FROM ' . $this…
1316 …$stmt = $this->pdo->prepare('DELETE FROM ' . $this->schedulingObjectTableName . ' WHERE principalu…
1331 …$stmt = $this->pdo->prepare('INSERT INTO ' . $this->schedulingObjectTableName . ' (principaluri, c…
1351 …$removeStmt = $this->pdo->prepare("DELETE FROM " . $this->calendarInstancesTableName . " WHERE cal…
1352 …$updateStmt = $this->pdo->prepare("UPDATE " . $this->calendarInstancesTableName . " SET access = ?…
1354 $insertStmt = $this->pdo->prepare('
1475 $stmt = $this->pdo->prepare($query);