Show / Hide Table of Contents

RowLimit(FCSession)

Object and Type

Object  : FCSession

Type     : Property

Prototype

Public RowLimit As Integer

Description

This property allows you to set the RowLimit property for all Generic objects subsequently created from this session. Each new Generic will inherit the property from the session.

Note: Setting this property does not affect the RowLimit for any existing Generic objects - only those created after the property is set.

Example

The following example sets the RowLimit for all Generics created from this session. One of the Generics has a different RowLimit set.

JavaScript:

// Set the session row limit, and create a generic that will share
// the limit, and one that won't.

<%
FCSession.RowLimit = 300;
var boCase = FCSession.CreateGeneric();
boCase.SimpleQuery("case");
boCase.RowLimit = 100;
var boSite = FCSession.CreateGeneric();
boSite.SimpleQuery("site");
boCase.Bulk.Query();
%>
Back to top © 2022 Dovetail Software, Inc. - All rights reserved.
Clarify, Amdocs, and related products and names are copyright and trademark of Amdocs, Inc.
.NET, Visual Studio.NET, C#, Visual Basic and related products are trademark of Microsoft corporation.