* @param name the name of the Chore.
* @return the number of rows deleted. It is 1, if successful, 0 otherwise.
* @exception Exception.
*/
public static int deleteChore(Connection connection, String name) throws Exception {
return new ChoreProcess(connection).deleteChore(name);
}