Searched refs:execute (Results 1 – 17 of 17) sorted by relevance
/web-bugs/src/Database/ |
H A D | Statement.php | 17 public function execute($parameters = null): self function in App\\Database\\Statement 19 parent::execute($parameters);
|
/web-bugs/src/Repository/ |
H A D | BugRepository.php | 52 $statement->execute([$id]); 72 $statement->execute(); 115 $statement->execute([$feedbackPeriod]); 137 $statement->execute($arguments); 164 $statement->execute($arguments); 175 $statement->execute([$id]);
|
H A D | CommentRepository.php | 38 $statement->execute([$id]); 61 $statement->execute([$interval]);
|
H A D | PatchRepository.php | 43 $statement->execute([$bugId]); 61 $statement->execute($arguments); 78 $statement->execute([$bugId, $patch]); 94 $statement->execute([$bugId, $name, $revision]);
|
H A D | ObsoletePatchRepository.php | 35 $statement->execute([$bugId, $patch, $revision]); 51 $statement->execute([$bugId, $patch, $revision]);
|
H A D | PullRequestRepository.php | 39 $statement->execute([$bugId]);
|
H A D | VoteRepository.php | 32 $statement->execute([$id, $ip]);
|
H A D | PackageRepository.php | 50 $statement->execute($arguments); 73 $statement->execute($arguments);
|
/web-bugs/www/ |
H A D | bug-pwd-finder.php | 32 $row = $dbh->prepare($query)->execute()->fetch(); 46 ')->execute([bugs_get_hash($new_passwd), $bug_id]);
|
H A D | vote.php | 80 )->execute(); 89 ->execute([
|
H A D | lstats.php | 32 $res = $dbh->prepare($query)->execute([]);
|
H A D | fix.php | 145 ")->execute([
|
H A D | bug.php | 100 …$dbh->prepare('REPLACE INTO bugdb_subscribe SET bug_id = ?, email = ?')->execute([$bug_id, $email]… 356 ")->execute([ 537 ")->execute([ 1275 $dbh->prepare("DELETE FROM bugdb_comments WHERE bug='{$bug_id}' AND id='{$com_id}'")->execute();
|
/web-bugs/src/Utils/ |
H A D | PatchTracker.php | 118 $this->dbh->prepare($sql)->execute([$bugId, $patch, $revision, $developer]); 123 $this->dbh->prepare($sql)->execute([$bugId, $patch, $revision, $developer]); 224 $this->dbh->prepare($sql)->execute([$bugId, $name, $revision]); 237 … $this->dbh->prepare($sql)->execute([$bugId, $name, $revision, $obsoleteName, $obsoleteRevision]);
|
/web-bugs/scripts/cron/ |
H A D | no-feedback | 38 ')->execute([
|
/web-bugs/include/ |
H A D | functions.php | 1067 ")->execute([$bug_id]); 1083 … $res = $dbh->prepare("SELECT ts1, email, ldesc FROM bugdb WHERE id = ?")->execute([$bug_id]); 1253 ')->execute([$package_name]); 1289 …$assigned = $dbh->prepare("SELECT assign FROM bugdb WHERE id= ? ")->execute([$bug_id])->fetch(\PDO… 1296 …$bcc = $dbh->prepare("SELECT email FROM bugdb_subscribe WHERE bug_id=?")->execute([$bug_id])->fetc… 1372 $affected = $dbh->prepare($query, null, null)->execute([$hash, $bug_id, $email]); 1424 $sub = $dbh->prepare($query)->execute([$bug_id, $hash])->fetch(); 1441 $dbh->prepare($query)->execute([$bug_id, $hash, $sub['email']]); 1455 ")->execute([ 1469 ")->execute([$new_status, $bug_id]); [all …]
|
H A D | query.php | 274 $result = $dbh->prepare($query)->execute()->fetchAll(); 276 … $total_rows = $dbh->prepare('SELECT FOUND_ROWS()')->execute()->fetch(\PDO::FETCH_NUM)[0];
|
Completed in 43 milliseconds