Limit the size of the projection of a query

3 messages Options
Embed this post
Permalink
Michael Simons

Limit the size of the projection of a query

Reply Threaded More More options
Print post
Permalink
Hello,

Is there a way in JPA or OpenJPA to limit the number of rows returned by a query?
In our formerly used JDO-Implementation there was a function called maxrows doing so.
I know there are several databases that support a limitation of the projection.
But how can I achieve this in JPA?

Kind Regards,
Michael
Fay Wang

Re: Limit the size of the projection of a query

Reply Threaded More More options
Print post
Permalink
You can call the following API to limit the number of rows returned by the query:

     Query.setMaxResults(maxResults);




----- Original Message ----
From: Michael Simons <[hidden email]>
To: [hidden email]
Sent: Thu, October 29, 2009 11:13:12 AM
Subject: Limit the size of the projection of a query

Hello,

Is there a way in JPA or OpenJPA to limit the number of rows returned by a query?
In our formerly used JDO-Implementation there was a function called maxrows doing so.
I know there are several databases that support a limitation of the projection.
But how can I achieve this in JPA?

Kind Regards,
Michael



     
Michael Simons

Re: Limit the size of the projection of a query

Reply Threaded More More options
Print post
Permalink
I beg your pardon for asking such a RTFM. I'm wondering how I could have missed that.

Thanks, Michael

Fay Wang schrieb:

> You can call the following API to limit the number of rows returned by the query:
>
>      Query.setMaxResults(maxResults);
>
>
>
>
> ----- Original Message ----
> From: Michael Simons <[hidden email]>
> To: [hidden email]
> Sent: Thu, October 29, 2009 11:13:12 AM
> Subject: Limit the size of the projection of a query
>
> Hello,
>
> Is there a way in JPA or OpenJPA to limit the number of rows returned by a query?
> In our formerly used JDO-Implementation there was a function called maxrows doing so.
> I know there are several databases that support a limitation of the projection.
> But how can I achieve this in JPA?
>
> Kind Regards,
> Michael