Remove

This methods will trigger batch update method and it is up to you how this command will be handle and if you run this asynchronous or synchronous.

Remove all

This method is used to remove all rows from the specified table that match the primary key values provided in the list.

public void removeAll(final String tableName, final List<String> values) 

Remove

This method is used to remove a single row from the database, where the value matches the primary key value. It removes the specified value from the corresponding table.

public void remove(final String tableName, final String value) 

Last updated