/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.jdbi.v3.core.statement;

import java.sql.SQLException;
import java.sql.Statement;

import org.jdbi.v3.core.Handle;
import org.jdbi.v3.core.result.ResultBearing;
import org.jdbi.v3.core.result.ResultProducer;
import org.jdbi.v3.core.result.UnableToProduceResultException;

import static org.jdbi.v3.core.result.ResultProducers.returningGeneratedKeys;
import static org.jdbi.v3.core.result.ResultProducers.returningUpdateCount;

Used for INSERT, UPDATE, and DELETE statements
/** * Used for INSERT, UPDATE, and DELETE statements */
public class Update extends SqlStatement<Update> { public Update(Handle handle, String sql) { super(handle, sql); }
Executes the statement, returning the update count.
Returns:the number of rows modified
/** * Executes the statement, returning the update count. * * @return the number of rows modified */
public int execute() { return execute(returningUpdateCount()); }
Executes the update, returning the result obtained from the given ResultProducer.
Params:
  • producer – the result producer.
Type parameters:
  • <R> – the result type
Returns:value returned by the result producer.
/** * Executes the update, returning the result obtained from the given {@link ResultProducer}. * * @param <R> the result type * @param producer the result producer. * @return value returned by the result producer. */
public <R> R execute(ResultProducer<R> producer) { try { return producer.produce(this::internalExecute, getContext()); } catch (SQLException e) { try { close(); } catch (Exception e1) { e.addSuppressed(e1); } throw new UnableToProduceResultException("Could not produce statement result", e, getContext()); } }
Execute the statement and returns any auto-generated keys. This requires the JDBC driver to support the Statement.getGeneratedKeys() method.
Params:
  • generatedKeyColumnNames – optional list of generated key column names.
Returns:ResultBearing of generated keys
/** * Execute the statement and returns any auto-generated keys. This requires the JDBC driver to support * the {@link Statement#getGeneratedKeys()} method. * * @param generatedKeyColumnNames optional list of generated key column names. * @return ResultBearing of generated keys */
public ResultBearing executeAndReturnGeneratedKeys(String... generatedKeyColumnNames) { return execute(returningGeneratedKeys(generatedKeyColumnNames)); } }