My attempts to query MySQL from PHP using the CREATE statement of a stored procedure (SP) have failed. Is this impossible?
If it is possible, please give an example.
P粉5461798352023-10-25 10:23:20
Besides privileges, what is most likely causing your problems is that mysql_query($query) can actually only execute one command per call!
So all you have to do is split the command into several mysql_query($query) -calls.
What I mean is this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
P粉0088297912023-10-25 00:51:17
The MySQL manual has a clear overview of how to create stored procedures (13.1.15. CREATE PROCEDURE
and CREATE FUNCTION
Syntax ) .
The next question is: does the account you use to access the MySQL database have the appropriate permissions for the actual creation process?
Details about this issue can be found here: 19.2.2. Stored routines and MySQL permissions