Package io.ebean

Interface SqlQuery

  • All Superinterfaces:
    Serializable

    public interface SqlQuery
    extends Serializable
    Query object for performing native SQL queries that return SqlRow or directly read ResultSet using a RowMapper.

    The returned SqlRow objects are similar to a LinkedHashMap with some type conversion support added.

    Refer to DtoQuery for native sql queries returning DTO beans.

    Refer to Database.findNative(Class, String) for native sql queries returning entity beans.

    
    
       // example using named parameters
    
       String sql = "select id, name from customer where name like :name and status_code = :status";
    
       List<SqlRow> list =
         DB.sqlQuery(sql)
           .setParameter("name", "Acme%")
           .setParameter("status", "ACTIVE")
           .findList();
    
     
    • Method Detail

      • findEach

        void findEach​(Consumer<SqlRow> consumer)
        Execute the SqlQuery iterating a row at a time.

        This streaming type query is useful for large query execution as only 1 row needs to be held in memory.

      • findEachWhile

        void findEachWhile​(Predicate<SqlRow> consumer)
        Execute the SqlQuery iterating a row at a time with the ability to stop consuming part way through.

        Returning false after processing a row stops the iteration through the query results.

        This streaming type query is useful for large query execution as only 1 row needs to be held in memory.

      • findOne

        @Nullable
        SqlRow findOne()
        Execute the query returning a single row or null.

        If this query finds 2 or more rows then it will throw a PersistenceException.

      • findOne

        <T> T findOne​(RowMapper<T> mapper)
        Execute the query returning a single result using the mapper.
        Parameters:
        mapper - Used to map each ResultSet row into the result object.
      • findList

        <T> List<T> findList​(RowMapper<T> mapper)
        Execute the query returning a list using the mapper.
        Parameters:
        mapper - Used to map each ResultSet row into the result object.
      • findEachRow

        void findEachRow​(RowConsumer consumer)
        Execute the query reading each row from ResultSet using the RowConsumer.

        This provides a low level option that reads directly from the JDBC ResultSet and is good for processing very large results where (unlike findList) we don't hold all the results in memory but instead can process row by row.

        
        
          String sql = "select id, name, status from customer order by name desc";
        
          DB.sqlQuery(sql)
            .findEachRow((resultSet, rowNum) -> {
        
              // read directly from ResultSet
        
              long id = resultSet.getLong(1);
              String name = resultSet.getString(2);
        
              // do something interesting with the data
        
            });
        
         
        Parameters:
        consumer - Used to read and process each ResultSet row.
      • findSingleAttribute

        <T> T findSingleAttribute​(Class<T> attributeType)
        Execute the query returning a single scalar attribute.
        @{code
        
           String sql = "select max(unit_price) from o_order_detail where order_qty > ?";
        
           BigDecimal maxPrice = DB.sqlQuery(sql)
             .setParameter(1, 2)
             .findSingleAttribute(BigDecimal.class);
        
         }

        The attributeType can be any scalar type that Ebean supports (includes javax time types, Joda types etc).

        Parameters:
        attributeType - The type of the returned value
      • findSingleDecimal

        BigDecimal findSingleDecimal()
        Execute the query returning a single BigDecimal value.

        This is an alias for findSingleAttribute(BigDecimal.class)

      • findSingleLong

        Long findSingleLong()
        Execute the query returning a single Long value.

        This is an alias for findSingleAttribute(Long.class)

      • findSingleAttributeList

        <T> List<T> findSingleAttributeList​(Class<T> attributeType)
        Execute the query returning a list of scalar attribute values.
        
        
           String sql =
           " select (unit_price * order_qty) " +
           " from o_order_detail " +
           " where unit_price > ? " +
           " order by (unit_price * order_qty) desc";
        
           //
           List<BigDecimal> lineAmounts =
             DB.sqlQuery(sql)
               .setParameter(1, 3)
               .findSingleAttributeList(BigDecimal.class);
        
         

        The attributeType can be any scalar type that Ebean supports (includes javax time types, Joda types etc).

        Parameters:
        attributeType - The type of the returned value
      • setParams

        SqlQuery setParams​(Object... values)
        Set one of more positioned parameters.

        This is a convenient alternative to multiple calls setParameter().

        
        
           String sql = "select id, name from customer where name like ? and status = ?";
        
           List<SqlRow> list =
             DB.sqlQuery(sql)
               .setParams("Rob", Status.NEW)
               .findList();
        
        
           // is the same as ...
        
           List<SqlRow> list =
             DB.sqlQuery(sql)
               .setParameter(1, "Rob")
               .setParameter(2, "Status.NEW)
               .findList();
        
         
      • setFirstRow

        SqlQuery setFirstRow​(int firstRow)
        Set the index of the first row of the results to return.
      • setMaxRows

        SqlQuery setMaxRows​(int maxRows)
        Set the maximum number of query results to return.
      • setTimeout

        SqlQuery setTimeout​(int secs)
        Set a timeout on this query.

        This will typically result in a call to setQueryTimeout() on a preparedStatement. If the timeout occurs an exception will be thrown - this will be a SQLException wrapped up in a PersistenceException.

        Parameters:
        secs - the query timeout limit in seconds. Zero means there is no limit.
      • setLabel

        SqlQuery setLabel​(String label)
        Set a label that can be put on performance metrics that are collected.
      • setBufferFetchSizeHint

        SqlQuery setBufferFetchSizeHint​(int bufferFetchSizeHint)
        A hint which for JDBC translates to the Statement.fetchSize().

        Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for ResultSet.