开发者

Nhibernate fetch

开发者 https://www.devze.com 2023-03-13 07:52 出处:网络
I fetch all data from table by hql querylike\"from table\"(this query return only one column) Size of table 79000000(79 M) rows

I fetch all data from table by hql query like"from table"(this query return only one column) Size of table 79000000(79 M) rows I limit size of answer by SetFirstResult(0) SetFetchSize(2000). It doesn't help . NHibernate throw OutOfMemory Exception.

I use Ora开发者_如何学Gocle. Thx


If you want to limit the resultset to 2000 you should use SetMaxResults(2000).

0

精彩评论

暂无评论...
验证码 换一张
取 消