Spring Data JDBC Extensions

org.springframework.data.jdbc.query
Interface SqlUpdateCallback


public interface SqlUpdateCallback

An interface used by QueryDslJdbcTemplate for update calls where you are able to provide a SQLUpdateClause implementation to handle the update logic.

Since:
1.0
Author:
Thomas Risberg
See Also:
QueryDslJdbcTemplate, SQLUpdateClause

Method Summary
 long doInSqlUpdateClause(com.mysema.query.sql.dml.SQLUpdateClause update)
           
 

Method Detail

doInSqlUpdateClause

long doInSqlUpdateClause(com.mysema.query.sql.dml.SQLUpdateClause update)

Spring Data JDBC Extensions