All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.server.bind.capture.BindCapture Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.server.bind.capture;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;

/**
 * Holds bind values that can be used to obtain an explain plan.
 */
public final class BindCapture {

  private final List entries = new ArrayList<>();

  public void add(BindCaptureEntry entry) {
    this.entries.add(entry);
  }

  /**
   * Prepare for explain plan statement execution.
   */
  public void prepare(PreparedStatement explainStmt, Connection connection) throws SQLException {
    for (BindCaptureEntry entry : entries) {
      entry.bind(explainStmt, connection);
    }
  }

  @Override
  public String toString() {
    return entries.toString();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy