What is the difference between triggers and procedures?
Answer / 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 |
What are different types of ResultSet?
What is JDBC ResultSet?
Briefly tell about the jdbc architecture.
how do we get the connection from connection pool
When do we get java.sql.SQLException: No suitable driver found?
What are the different types of drivers under jdbc?
What does it mean to "materialize" data?
Name the new features added in jdbc 4.0.
all Java qts are imp ?
How do we call a stored procedure from jdbc?
what is the meaning of following code snippets Class c=class.forName(driverClassName); Driver d=(driver)c.newInstance();
Is jdbc faster than hibernate?