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