Hi all,
I have a table named "a1" in MYSQL. It's columns are "identity"(type int) and "name"(type varchar). It has seven rows out of which one row's "name" column's value is the
string jkl.
I am trying to delete this row using batch delete. Here's the code fragment.
when i run this program,however,I am getting the following message:
Hibernate: delete from a1 a1x0_ where (a1x0_.name=?)
could not execute update query
Why is it so? Could anybody kindly guide me as to how to solve this issue?
Thanks,
Subhash