public interface SqlStatementExecutable
Modifier and Type | Method and Description |
---|---|
default ResultSet |
execute(Statement statement)
Executes the specified statement.
|
default ResultSet |
execute(Statement statement,
java.util.List<Value> positionalValues)
Executes the specified statement with the specified positional values.
|
ResultSet |
execute(Statement statement,
java.util.List<Value> positionalValues,
java.lang.String defaultNamespaceName)
Executes the specified statement with the specified positional values.
|
default ResultSet |
execute(Statement statement,
java.util.Map<java.lang.String,Value> namedValues)
Executes the specified statement with the specified named values.
|
ResultSet |
execute(Statement statement,
java.util.Map<java.lang.String,Value> namedValues,
java.lang.String defaultNamespaceName)
Executes the specified statement with the specified named values.
|
default ResultSet |
execute(Statement statement,
java.lang.String defaultNamespaceName)
Executes the specified statement.
|
default ResultSet |
execute(java.lang.String sql)
Executes the specified SQL statement.
|
default ResultSet |
execute(java.lang.String sql,
java.util.List<Value> positionalValues)
Executes the specified SQL statement with the specified positional values.
|
ResultSet |
execute(java.lang.String sql,
java.util.List<Value> positionalValues,
java.lang.String defaultNamespaceName)
Executes the specified SQL statement with the specified positional values.
|
default ResultSet |
execute(java.lang.String sql,
java.util.Map<java.lang.String,Value> namedValues)
Executes the specified SQL statement with the specified named values.
|
ResultSet |
execute(java.lang.String sql,
java.util.Map<java.lang.String,Value> namedValues,
java.lang.String defaultNamespaceName)
Executes the specified SQL statement with the specified named values.
|
default ResultSet |
execute(java.lang.String sql,
java.lang.String defaultNamespaceName)
Executes the specified SQL statement.
|
default ResultSet execute(java.lang.String sql)
sql
- an SQL statement to executeResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientdefault ResultSet execute(java.lang.String sql, @Nullable java.lang.String defaultNamespaceName)
sql
- an SQL statement to executedefaultNamespaceName
- the default namespace name used if a namespace is not specified in
the SQL statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientdefault ResultSet execute(java.lang.String sql, java.util.List<Value> positionalValues)
sql
- an SQL statement to executepositionalValues
- parameter values for the positional bind markers in the SQL statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientResultSet execute(java.lang.String sql, @Nullable java.util.List<Value> positionalValues, @Nullable java.lang.String defaultNamespaceName)
sql
- an SQL statement to executepositionalValues
- parameter values for the positional bind markers in the SQL statementdefaultNamespaceName
- the default namespace name used if a namespace is not specified in
the SQL statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientdefault ResultSet execute(java.lang.String sql, java.util.Map<java.lang.String,Value> namedValues)
sql
- an SQL statement to executenamedValues
- parameter values for the named bind markers in the SQL statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientResultSet execute(java.lang.String sql, @Nullable java.util.Map<java.lang.String,Value> namedValues, @Nullable java.lang.String defaultNamespaceName)
sql
- an SQL statement to executenamedValues
- parameter values for the named bind markers in the SQL statementdefaultNamespaceName
- the default namespace name used if a namespace is not specified in
the SQL statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientdefault ResultSet execute(Statement statement)
statement
- a statement to executeResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientdefault ResultSet execute(Statement statement, @Nullable java.lang.String defaultNamespaceName)
statement
- a statement to executedefaultNamespaceName
- the default namespace name used if a namespace is not specified in
the statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientdefault ResultSet execute(Statement statement, java.util.List<Value> positionalValues)
statement
- a statement to executepositionalValues
- parameter values for the positional bind markers in the statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientResultSet execute(Statement statement, @Nullable java.util.List<Value> positionalValues, @Nullable java.lang.String defaultNamespaceName)
statement
- a statement to executepositionalValues
- parameter values for the positional bind markers in the statementdefaultNamespaceName
- the default namespace name used if a namespace is not specified in
the statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientdefault ResultSet execute(Statement statement, java.util.Map<java.lang.String,Value> namedValues)
statement
- a statement to executenamedValues
- parameter values for the named bind markers in the statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranientResultSet execute(Statement statement, @Nullable java.util.Map<java.lang.String,Value> namedValues, @Nullable java.lang.String defaultNamespaceName)
statement
- a statement to executenamedValues
- parameter values for the named bind markers in the statementdefaultNamespaceName
- the default namespace name used if a namespace is not specified in
the statementResultSet
object that contains the data produced by the queryTransactionRetryableException
- if the transaction operation execution fails due to
retryable faults (e.g., a transaction conflict). You can retry the transaction from the
beginning.SqlException
- if the transaction operation execution fails due to transient or
nontransient faults. You can try retrying the transaction from the beginning, but the
transaction may still fail if the cause is nontranient