Interface PreparedStatement (2.58.2)

public interface PreparedStatement

The results of query preparation that can be used to create BoundStatements to execute queries.

Whenever possible this should be shared across different instances of the same query, in order to amortize query preparation costs.

Methods

bind()

public abstract BoundStatement.Builder bind()
Returns
Type Description
BoundStatement.Builder BoundStatement.Builder to bind query params to and pass to com.google.cloud.bigtable.data.v2.BigtableDataClient#executeQuery(BoundStatement)