Spring Data JDBC Extensions

org.springframework.data.jdbc.query
Interface SqlUpdateCallback


Deprecated. as of Spring JDBC Extensions 1.2.0 in favor of directly using the Querydsl Spring support

@Deprecated
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)
          Deprecated.  
 

Method Detail

doInSqlUpdateClause

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

Spring Data JDBC Extensions