Interface JdbcOperation

    • Method Detail

      • getSql

        String getSql()
        Get the SQL command we will be executing through JDBC PreparedStatement or CallableStatement
      • getParameterBinders

        List<JdbcParameterBinder> getParameterBinders()
        Get the list of parameter binders for the generated PreparedStatement
      • getAffectedTableNames

        Set<String> getAffectedTableNames()
      • dependsOnParameterBindings

        boolean dependsOnParameterBindings()
        Signals that the SQL depends on the parameter bindings e.g. due to the need for inlining of parameter values or multiValued parameters.
      • bindFilterJdbcParameters

        default void bindFilterJdbcParameters​(JdbcParameterBindings jdbcParameterBindings)