Spring Data JDBC Extensions

org.springframework.data.jdbc.query
Interface SqlInsertCallback


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

@Deprecated
public interface SqlInsertCallback

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

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

Method Summary
 long doInSqlInsertClause(com.mysema.query.sql.dml.SQLInsertClause insert)
          Deprecated.  
 

Method Detail

doInSqlInsertClause

long doInSqlInsertClause(com.mysema.query.sql.dml.SQLInsertClause insert)
Deprecated. 

Spring Data JDBC Extensions