Uses of Class
org.springframework.data.relational.core.query.Query
Packages that use Query
Package
Description
Core JDBC implementation.
JDBC-specific conversion classes.
Core domain types around DatabaseClient.
Query and update support.
Query support for relational database repositories.
-
Uses of Query in org.springframework.data.jdbc.core
Methods in org.springframework.data.jdbc.core with parameters of type QueryModifier and TypeMethodDescription<T> longCounts the number of aggregates of a given type that match the givenquery.<T> long<T> booleanDetermine whether there are aggregates that match theQuery<T> boolean<T> List<T>Execute aSELECTquery and convert the resulting items to aListthat is sorted.<T> Page<T>Deprecated.since 3.5.6.<T> List<T><T> Page<T>Deprecated.<T> Optional<T>Execute aSELECTquery and convert the resulting item to an entity ensuring exactly one result.<T> Optional<T><T> Stream<T>Execute aSELECTquery and convert the resulting items to aStream.<T> Stream<T> -
Uses of Query in org.springframework.data.jdbc.core.convert
Methods in org.springframework.data.jdbc.core.convert with parameters of type QueryModifier and TypeMethodDescription<T> long<T> longCounts the rows in the table representing the given probe type, that match the givenquery.<T> long<T> long<T> boolean<T> booleanDetermine whether there is an aggregate of typedomainTypethat matches the providedQuery.<T> boolean<T> boolean<T> Iterable<T><T> Iterable<T><T> Iterable<T>Execute aSELECTquery and convert the resulting items to aIterable.<T> Iterable<T>Execute aSELECTquery and convert the resulting items to aIterable.<T> List<T><T> List<T><T> Iterable<T><T> Iterable<T><T> Optional<T><T> Optional<T>Execute aSELECTquery and convert the resulting item to an entity ensuring exactly one result.<T> Optional<T><T> Optional<T><T> Stream<T><T> Stream<T>Execute aSELECTquery and convert the resulting items to aStream.<T> Stream<T><T> Stream<T> -
Uses of Query in org.springframework.data.jdbc.mybatis
Methods in org.springframework.data.jdbc.mybatis with parameters of type Query -
Uses of Query in org.springframework.data.jdbc.repository.support
Methods in org.springframework.data.jdbc.repository.support with parameters of type QueryModifier and TypeMethodDescriptionstatic <T> Window<T>Method parameters in org.springframework.data.jdbc.repository.support with type arguments of type Query -
Uses of Query in org.springframework.data.r2dbc.core
Methods in org.springframework.data.r2dbc.core with parameters of type QueryModifier and TypeMethodDescriptionReturns the number of rows for the given entity class applyingQuery.Remove entities (rows)/columns from the table byQuery.Determine whether the result forentityClassQueryyields at least one row.Define theQueryused to filter elements in the delete.Set theQueryused as a filter in theSELECTstatement.Filter rows to update by the givenQuery.<T> Flux<T>Execute aSELECTquery and convert the resulting items to a stream of entities.<T> Flux<T><T> Mono<T>Execute aSELECTquery and convert the resulting item to an entity ensuring exactly one result.<T> Mono<T>Update the queried entities and return true if the update was applied. -
Uses of Query in org.springframework.data.relational.core.query
Methods in org.springframework.data.relational.core.query that return QueryModifier and TypeMethodDescriptionAdd columns to the query.Query.columns(Collection<String> columns) Add columns to the query.Query.columns(SqlIdentifier... columns) Add columns to the query.static QueryQuery.empty()Create a new emptyQuery.Query.limit(int limit) Limit the number of returned documents tolimit.Query.offset(long offset) Set number of rows to skip before returning results.static QueryQuery.query(CriteriaDefinition criteria) Static factory method to create aQueryusing the providedCriteriaDefinition.Set the given pagination information on theQueryinstance. -
Uses of Query in org.springframework.data.relational.repository.query
Methods in org.springframework.data.relational.repository.query that return QueryModifier and TypeMethodDescription<T> QueryRelationalExampleMapper.getMappedExample(Example<T> example)