In this lesson we will show how to delete rows from the underlying database using the hibernate. Lets first write a java class to delete a row from the database.
Create a java class:
Here is the code of our java file (
Here is the code of our java file (
DeleteHQLExample
.java), which we will delete a row from the insurance table using the query "delete from Insurance insurance where id = 2"
Here is the code of delete query:
DeleteHQLExample.java
package roseindia.tutorial.hibernate; |
Output:
Hibernate: delete from insurance where ID=2
Deleted Row: 1