What are the features of Stored Procedures in MYSQL?
Answer Posted / hrindows@gmail.com
Stored Procedure increases the performance of the applications. Once stored procedures are created, they are compiled and stored in the database.
Stored procedure reduces the traffic between application and database server. Because the application has to send only the stored procedure's name and parameters instead of sending multiple SQL statements.
Stored procedures are reusable and transparent to any applications.
A procedure is always secure. The database administrator can grant permissions to applications that access stored procedures in the database without giving any permission on the database tables.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How is data stored in mysql?
How to define numeric 9(3) in db2 table without decimal point??
How many ways to get the current time?
Why to use char instead of varchar in the database?
What is myisamchk?
How to increment dates by 1 in mysql?
What is the difference between sql and mysql and oracle?
How to run a sql statement?
What are the steps required to view your mysql database?
How to rename an existing table in mysql?
What is a user defined variable?
what are the different tables present in mysql? : Mysql dba
How To see all the tables from a database of mysql server.
In which language mysql has been written?
What are the purposes of using enum and set data types?