php - Making a MySQL database connection with a stored procedure -


all examples of using mysql stored procedures via php show script making connection php before calling procedure. possible define , use procedure make connection, , return connection handler used php?

a stored procedure can have in, inout , out parameters, depending on mysql version.

in passes value procedure.  out passes value procedure caller.  inout caller initializes inout parameter, procedure can modify value, , final value visible caller when procedure returns. 

you need connection database call stored procedure.. can't procedure call connection.


Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -