i am using php and mysql combination . My case is I am using two queries (one 'select' and 'insert') for an activity, sometimes 3 queries . that will be done very frequently by diffrent users . I am using mysql_query function seperately for the queries to execute them . is this good or is it bettere use SQL function which executes all the queries. I want to know which is better regarding the performance
|
feedback
|
|
In my opinion it is better practice to create a function which performs a single operation well. This makes the functions easier to test and allows them to be utilized in other operations in the future. In your case I would create a stored procedure to execute the routine. | |||
|
feedback
|
|
If you're using the http://php.net/manual/en/mysqli.multi-query.php However please note that if one of the queries relies on the success of another of the queries, they should be separated out for error checking. | |||||||
feedback
|
|
It would help if you could show concrete examples - right now, it's all very hypothetical. However: If you can combine the operations into a single query, it's the fastest option. For instance:
If you have to do some processing on the results of the select statement, you can create a stored procedure to do the processing. This avoids the round trip of sending the data back to your PHP server, which should yield a performance benefit - however, it may well be that PHP is a better/faster language to execute the processing in than the stored procedure. For instance, if you have to manipulate text, I'd do it in PHP. | |||
|
feedback
|