QuerySlice

Description

Returns part of a query object with only the rows you need.

Returns

The number of records from the query object starting from an offset index.

Category

Syntax

QuerySlice(Object query,offset,length)

Member function

queryObject.Slice(offset,length)

History

New in ColdFusion (2018 release) Update 5.

Parameters

Parameter

Required/Optional

Description

Query

Required

The query object that you want to slice.

Offset

Required

Specifies the position from where to slice the query object.

Length

Optional

The number of rows from the offset. If you do not specify the length, the function returns all the records until the end of the query object.

See also

Example

<cfscript>
 myquery=QueryExecute("SELECT * FROM APP.ART",[],{datasource="cfartgallery"})
 slice1=QuerySlice(myquery,2,3) // Returns rows 2,3, and 4
 slice2=QuerySlice(myquery,50) // Returns all rows including and after row 50
 writedump(slice1)
 writedump(slice2)
</cfscript>

Output

Slice1

Slice2

 Adobe

Get help faster and easier

New user?

Adobe MAX 2024

Adobe MAX
The Creativity Conference

Oct 14–16 Miami Beach and online

Adobe MAX

The Creativity Conference

Oct 14–16 Miami Beach and online

Adobe MAX 2024

Adobe MAX
The Creativity Conference

Oct 14–16 Miami Beach and online

Adobe MAX

The Creativity Conference

Oct 14–16 Miami Beach and online