Lines Matching refs:pdo
41 protected $pdo; variable in Sabre\\DAVACL\\PrincipalBackend\\PDO
70 function __construct(\PDO $pdo) { argument
72 $this->pdo = $pdo;
101 … $result = $this->pdo->query('SELECT ' . implode(',', $fields) . ' FROM ' . $this->tableName);
145 …$stmt = $this->pdo->prepare('SELECT ' . implode(',', $fields) . ' FROM ' . $this->tableName . ' W…
204 $stmt = $this->pdo->prepare($query);
264 $stmt = $this->pdo->prepare($query);
309 $stmt = $this->pdo->prepare($query);
339 …$stmt = $this->pdo->prepare('SELECT principals.uri as uri FROM ' . $this->groupMembersTableName . …
361 …$stmt = $this->pdo->prepare('SELECT principals.uri as uri FROM ' . $this->groupMembersTableName . …
384 …$stmt = $this->pdo->prepare('SELECT id, uri FROM ' . $this->tableName . ' WHERE uri IN (? ' . str_…
400 …$stmt = $this->pdo->prepare('DELETE FROM ' . $this->groupMembersTableName . ' WHERE principal_id =…
405 …$stmt = $this->pdo->prepare('INSERT INTO ' . $this->groupMembersTableName . ' (principal_id, membe…
425 $stmt = $this->pdo->prepare('INSERT INTO ' . $this->tableName . ' (uri) VALUES (?)');