通过PHP使用MySQL存储过程的所有示例都显示了在调用过程之前与PHP建立连接的脚本。是否可以定义和使用过程进行连接,然后返回要由PHP使用的连接处理程序?
最佳答案
存储过程可以具有IN,INOUT和OUT参数,具体取决于MySQL版本。
IN
Passes a value into a procedure.
OUT
Passes a value from a procedure back to the caller.
INOUT
The caller initializes an INOUT parameter, but the procedure can modify the value, and the final value is visible to the caller when the procedure returns.
您需要与数据库建立连接才能调用存储过程。因此,您将无法获得过程来回调连接。
关于php - 使用存储过程建立MySQL数据库连接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30601346/