Пример #1
0
 /**
  * Retrieves information about all stored routines in the current schema.
  */
 private function getOldStoredRoutinesInfo()
 {
     $this->myRdbmsOldMetadata = [];
     $routines = DataLayer::getRoutines();
     foreach ($routines as $routine) {
         $this->myRdbmsOldMetadata[$routine['routine_name']] = $routine;
     }
 }