public void basicExecute() {
try {
int rowsAffected = statement.executeUpdate(parameters);
if (rowsAffected == 0) {
throw new OptimisticConcurrencyException("An update collision occurred");
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
}