I want to add subscriptions to a User class, i do it by invoking the "addTo" method, here is my code:
if (params.jobs == "on") {
user.addToSubscriptions(Category.findWhere(id: 1L))
} else {
user.removeFromSubscriptions(Category.findWhere(id: 1L))
}
the "params" come from checkboxes, where the user can subscribe to a category by setting checkboxes. The code above is invoked when a form is submitted. What doesnt work ist, when the user changes more than 1 categories, think of the same code as above with different params.x, like this
if (params.offers == "on") {
Category cat = Category.get(2)
if (!user.subscriptions.contains(cat))
user.addToSubscriptions(Category.findWhere(id: 2L))//needs long variable
} else {
user.removeFromSubscriptions(Category.findWhere(id: 2L))
}
What also happens only the category wich is first in the code gets added and removed, all other throw the following exception:
org.hibernate.exception.GenericJDBCException: Could not execute JDBC batch update
edit: the line in wich the exception is thrown is this one tho, wich makes no sense to me :(
edit: The exception gets thrown when I want to add a category, wich is already added, it also doesnt get removed. (Thats only for the categories which are not handled first in the code, dont ask me why)
//reload page
redirect(action: "userSettings")
what can I do? Please help! thanks a lot in advance! Daniel