Spring Data JDBC Extensions

org.springframework.data.jdbc.query
Interface SqlInsertWithKeyCallback<K>


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

@Deprecated
public interface SqlInsertWithKeyCallback<K>

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

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

Method Summary
 K doInSqlInsertWithKeyClause(com.mysema.query.sql.dml.SQLInsertClause insert)
          Deprecated.  
 

Method Detail

doInSqlInsertWithKeyClause

K doInSqlInsertWithKeyClause(com.mysema.query.sql.dml.SQLInsertClause insert)
                             throws SQLException
Deprecated. 
Throws:
SQLException

Spring Data JDBC Extensions