What is the difference between triggers and procedures?
Answer Posted / sangeeta
Triggers are group of SQL statements which are executed
automatically in response to the DML ie. Data Manipulation
Language - insert / update / delete.
Procedures are also group of SQL statements submitted
together to the server for execution. Unlike triggers
Procedures have to be executed explicitly.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Why should we close database connections in java?
What happens if connection is not closed in jdbc?
What is jdbc architecture?
What is a JDBC 2.0 DataSource?
What is represented by the connection object?
What causes no suitable driver error?
Compare jdbc and odbc and how is jdbc required in this context.
What is encrypted connection?
Which type of driver is unique in jdbc?
what is the meaning of following code snippets Class c=class.forName(driverClassName); Driver d=(driver)c.newInstance();
What is a lock in jdbc?
Why do you use a data source object for a connection?
What does the connection object represents?
What is the feature of jdbc v4?
What are the classes and methods used for sending sql statements to database?