在 phpMyAdmin 中編寫預存程序:逐步指南
預存程序可以簡化複雜的資料庫操作。 phpMyAdmin 提供了一種建立和管理預存程序的簡單方法。操作方法如下:
建立預存程序:
範例:
<code class="sql">CREATE PROCEDURE get_customer_orders(IN customer_id INT) BEGIN SELECT * FROM orders WHERE customer_id = customer_id; END;</code>
在 MVC 架構中呼叫預存程序:
建立後預存程序,您可以從 MVC 架構應用程式中呼叫它。操作方法如下:
模型:
<code class="php"><?php use PDO; class CustomerModel { private $db; public function __construct() { $this->db = new PDO(...); } public function getOrders($customerId) { $stmt = $this->db->prepare("CALL get_customer_orders(?)"); $stmt->bindParam(1, $customerId, PDO::PARAM_INT); $stmt->execute(); return $stmt->fetchAll(); } }</code>
控制器:
<code class="php">class CustomerController { public function index($customerId) { $customerModel = new CustomerModel(); $orders = $customerModel->getOrders($customerId); return view('customer/orders', ['orders' => $orders]); } }</code>
按照以下步驟,您可以在phpMyAdmin 中輕鬆編寫和呼叫預存程序並將其整合到您的MVC 架構應用程式中。
以上是如何為您的 MVC 應用程式編寫和呼叫 phpMyAdmin 中的預存程序?的詳細內容。更多資訊請關注PHP中文網其他相關文章!