BeanPropertySqlParameterSource « Bean « Spring Q&A





1. Combine BeanPropertySqlParameterSource and MapSqlParameterSource?    forum.springsource.org

BeanPropertySqlParameterSource inParams; inParams = new BeanPropertySqlParameterSource(someDTO); simpleJdbcCallProdecure.execute(inParams); // I want to add one more paramter: MapSqlParameterSource anotherParam = new MapSqlParameterSource("argument_x", 42);

2. BeanPropertySqlParameterSource and Boolean type property handing problem    forum.springsource.org

BeanPropertySqlParameterSource and Boolean type property handing problem I am using BeanPropertySqlParameterSource for executing update on JDBC sql. My bean has 'active' property of type 'Boolean'. And hence getter method if 'isActive() ...

3. Using non-standard data types with BeanPropertySqlParameterSource & named parameters    forum.springsource.org

Using non-standard data types with BeanPropertySqlParameterSource & named parameters We have a number of data objects. The objects and the database use a java.util.UUID as a surrogate keys. In the database, ...

4. Contained class fields as named parameters with BeanPropertySqlParameterSource    forum.springsource.org

Contained class fields as named parameters with BeanPropertySqlParameterSource Hi, I have an Address object contained in the User object. I am inserting a new User to the database using BeanPropertySqlParameterSource and ...