Lines Matching refs:stmt
145 …$stmt = $this->pdo->prepare('SELECT ' . implode(',', $fields) . ' FROM ' . $this->tableName . ' W…
146 $stmt->execute([$path]);
148 $row = $stmt->fetch(\PDO::FETCH_ASSOC);
204 $stmt = $this->pdo->prepare($query);
205 $stmt->execute($values);
265 $stmt = $this->pdo->prepare($query);
266 $stmt->execute($values);
269 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
294 …$stmt = $this->pdo->prepare('SELECT principals.uri as uri FROM ' . $this->groupMembersTableName . …
295 $stmt->execute([$principal['id']]);
298 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
316 …$stmt = $this->pdo->prepare('SELECT principals.uri as uri FROM ' . $this->groupMembersTableName . …
317 $stmt->execute([$principal['id']]);
320 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
339 …$stmt = $this->pdo->prepare('SELECT id, uri FROM ' . $this->tableName . ' WHERE uri IN (? ' . str_…
340 $stmt->execute(array_merge([$principal], $members));
345 while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) {
355 …$stmt = $this->pdo->prepare('DELETE FROM ' . $this->groupMembersTableName . ' WHERE principal_id =…
356 $stmt->execute([$principalId]);
360 …$stmt = $this->pdo->prepare('INSERT INTO ' . $this->groupMembersTableName . ' (principal_id, membe…
361 $stmt->execute([$principalId, $memberId]);
380 $stmt = $this->pdo->prepare('INSERT INTO ' . $this->tableName . ' (uri) VALUES (?)');
381 $stmt->execute([$path]);