@@ 492-496 (lines=5) @@ | ||
489 | } |
|
490 | ||
491 | // Listing all triggers from database |
|
492 | if (false === $this->dumpSettings['skip-triggers']) { |
|
493 | foreach ($this->dbHandler->query($this->typeAdapter->show_triggers($this->dbName)) as $row) { |
|
494 | array_push($this->triggers, $row['Trigger']); |
|
495 | } |
|
496 | } |
|
497 | ||
498 | // Listing all procedures from database |
|
499 | if ($this->dumpSettings['routines']) { |
|
@@ 499-503 (lines=5) @@ | ||
496 | } |
|
497 | ||
498 | // Listing all procedures from database |
|
499 | if ($this->dumpSettings['routines']) { |
|
500 | foreach ($this->dbHandler->query($this->typeAdapter->show_procedures($this->dbName)) as $row) { |
|
501 | array_push($this->procedures, $row['procedure_name']); |
|
502 | } |
|
503 | } |
|
504 | ||
505 | // Listing all events from database |
|
506 | if ($this->dumpSettings['events']) { |
|
@@ 506-510 (lines=5) @@ | ||
503 | } |
|
504 | ||
505 | // Listing all events from database |
|
506 | if ($this->dumpSettings['events']) { |
|
507 | foreach ($this->dbHandler->query($this->typeAdapter->show_events($this->dbName)) as $row) { |
|
508 | array_push($this->events, $row['event_name']); |
|
509 | } |
|
510 | } |
|
511 | } |
|
512 | ||
513 | /** |