Posts

Showing posts from January, 2020

ADVANDAGES OF MYSQL STORED PROCEDURE

MySQL stored procedure Stored procedures are compiled once and stored in executable form so that process calls can be made quickly and efficiently in Website Development Company in Bangalore. Executed code is can be imediately cached and shared among the users. This reduces memory requirements and invitation overheads. By compiling SQL statements, the stored procedure allows them to be executed by a single call. It reduces the use of slow networks, reduces network traffic and improves round-trip response time. OLTP applications, in particular, are beneficial because the result set process eliminates network problems. Advandages of MySQL stored procedure Increase the efficiency of applications After creating the stored procedure we know that it is compiled and stored in the database. But MySQL performs stored procedures slightly differently, which helps to increase the performance of applications. MySQL stored procedures are compiled on demand. After compiling the stored proc...