Spring Data JDBC Extensions

org.springframework.data.jdbc.query
Interface SqlInsertCallback


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)
           
 

Method Detail

doInSqlInsertClause

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

Spring Data JDBC Extensions