How do I check the execution status of INSERT or DELETE statements?
For example if I execute the following statement:
ResultSetFuture rsf = Session.executeAsync("DELETE FROM event WHERE id = 123");
I've tried examining both the ResultSetFuture as well as the ResultSet, but haven't figured out how to get data about whether the requested row was found and deleted.
Also, how do I determine whether an INSERT statement has succeeded?
Is it just that no exception gets thrown?
marko