Heim >Datenbank >MySQL-Tutorial >Wie rufe ich gespeicherte Prozeduren in PHPMyAdmin mithilfe der MVC-Architektur auf?
Gespeicherte Prozeduren in phpMyAdmin mithilfe der MVC-Architektur erstellen und aufrufen
In phpMyAdmin können Sie gespeicherte Prozeduren bequem auf der Registerkarte „Routinen“ der Datenbank erstellen . Hier ist eine Schritt-für-Schritt-Anleitung zum Schreiben und Aufrufen gespeicherter Prozeduren:
Gespeicherte Prozedur erstellen:
Aufrufen einer gespeicherten Prozedur mit MVC:
In Ihrer MVC-Architektur Sie kann die gespeicherte Prozedur aus der Model-Klasse aufrufen:
<code class="php">// Model class (e.g., ProcedureModel.php) class ProcedureModel extends Model { public function callStoredProcedure($procedureName, $parameters = array()) { // Prepare the stored procedure call $stmt = $this->db->prepare("CALL $procedureName(?)"); // Bind the parameters, if any foreach ($parameters as $key => $value) { $stmt->bindParam($key + 1, $value); } // Execute the stored procedure $stmt->execute(); // Retrieve the results, if any $result = $stmt->fetchAll(); // Return the results return $result; } }</code>
In Ihrer Controller-Klasse (z. B. ProcedureController.php) können Sie auf die gespeicherte Prozedurmethode zugreifen:
<code class="php">// Controller class (e.g., ProcedureController.php) class ProcedureController extends Controller { public function index() { // Get the parameters from the view $parameters = array(1, 'John Doe'); // Load the Model class $procedureModel = new ProcedureModel(); // Call the stored procedure $result = $procedureModel->callStoredProcedure('GetCustomerInfo', $parameters); // Pass the results to the view $this->view('procedure', array('result' => $result)); } }</code>
In Ihrer View-Klasse (z. B. procedure.php) können Sie die Ergebnisse anzeigen:
<code class="php">// View class (e.g., procedure.php) <?php foreach ($result as $row): ?> <tr> <td><?php echo $row['customer_id']; ?></td> <td><?php echo $row['customer_name']; ?></td> </tr> <?php endforeach; ?></code>
Das obige ist der detaillierte Inhalt vonWie rufe ich gespeicherte Prozeduren in PHPMyAdmin mithilfe der MVC-Architektur auf?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!