Spring Data JDBC Extensions

org.springframework.data.jdbc.query
Interface SqlDeleteCallback


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

@Deprecated
public interface SqlDeleteCallback

An interface used by QueryDslJdbcTemplate for delete calls where you are able to provide a SQLDeleteClause implementation to handle the delete.

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

Method Summary
 long doInSqlDeleteClause(com.mysema.query.sql.dml.SQLDeleteClause delete)
          Deprecated.  
 

Method Detail

doInSqlDeleteClause

long doInSqlDeleteClause(com.mysema.query.sql.dml.SQLDeleteClause delete)
Deprecated. 

Spring Data JDBC Extensions