Hi,
I am using Hibernate together with your JDBC driver. When I run a query
Criteria crit = getSession().createCriteria(TblLicencedPremises.class);
crit.add(Restrictions.isNotNull("licenceRef"));
The result set returned is 1000 even though there are > 1000 rows that meet the criteria. Is this limit set in the JDBC driver?
Thanks,
James
|
Yeah. It's descripted at here.
|
Suspected that was the case but obviously did not read the documentation!
Thanks.
|