Author Archives: Elvin Roy


November 1, 2015 10:22 pm

Stored procedures in PHP and MySQL


Stored procedures in PHP and MySQL
Today, a majority of databases support stored procedures. A stored procedure is simply a set of SQL instructions that perform a particular task which is stored in the database to help associated programming languages and database engine retrieve it anytime. Stored procedures are a great way to increase the performance and reduce network traffic. They usually accept input parameters and can be used by different clients over the network.

[ Read More ]