雖然 phpMyAdmin 無法直接管理預存程序,但可以使用 SQL 查詢建立、修改和刪除它們。
在 phpMyAdmin 中建立預存程序phpMyAdmin,請依照下列步驟操作:
CREATE PROCEDURE sp_test() BEGIN SELECT 'Number of records: ', count(*) from test; END//
使用PHP 中的預存程序,您需要執行CALL 查詢:
<?php $db = new mysqli('localhost', 'username', 'password', 'database'); // Prepare the stored procedure call $stmt = $db->prepare('CALL sp_test()'); // Execute the stored procedure $stmt->execute(); // Fetch the results $result = $stmt->get_result(); // Process the results while ($row = $result->fetch_assoc()) { echo $row['Number of records: '] . "<br>"; } $stmt->close(); $db->close();
如果您不想使用phpMyAdmin,其他可以管理預存程序的工具包括:
可以使用SQL 查詢在phpMyAdmin 中建立和管理預存程序。然後可以使用 CALL 命令從 PHP 輕鬆呼叫它們。在某些情況下,使用預存程序可以提高效能和程式碼可讀性。
以上是如何在 phpMyAdmin 中管理預存程序並與 PHP 整合?的詳細內容。更多資訊請關注PHP中文網其他相關文章!