Search:

Type: Posts; User: BramB75; Keyword(s):

Search: Search took 0.02 seconds.

  1. @Transient private String cityAsString = null;

    @Transient
    private String cityAsString = null;
  2. Replies
    4
    Views
    1,987

    Batch update

    The getSimpleJdbcTemplate().batchUpdate(String sql, Object[] arguments) is inteded to execute the same query multiple times with different arguments.

    It's not possible to execute different queries...
  3. Replies
    4
    Views
    940

    Example

    @Transactional
    public void serviceMethod(Object args) {
    executeUpdate(); // database operation 1
    executeUpdate(); // database operation 2
    executeQuery(); // database operation 3
    }...
Results 1 to 3 of 3