EnableVirtualPaging is a property on the BaseBusinessObject, and it is used to specify if the business object will automatically perform paging if the underlying database server does not support database server side paging.
<appSettings>
<add key="EnableVirtualPaging" value="True" />
</appSettings>
Database servers that have support for server side paging:
-
Sql Server 2005
-
Oracle 8i, 9i, 10g, 11g
-
MySQL
Database server that do not have support for server side paging:
-
Sql Server 2000
-
Access
-
VistaDB
-
SQL Compact Edition
By default this value is false. To change this behavior you are not required to recompile your code.
![]() |
Please note that your code will behave differently if you change this configuration setting. If you are upgrading code written with previous version of Quick Objects and would like to use this setting/feature, please test your application thoroughly. |

