Find mode
Overview
Entering and Exiting Find Mode
// Find all customers in the city of Berlin
if (foundset.find()) { // Enter find mode
city = 'Berlin'; // Assign a search criterion
foundset.search(); // Execute the query and load the records
}Copy code
SELECT customerid FROM customers WHERE city = ? ORDER BY customerid ASC['Berlin']Search Criteria with Logical AND
Multiple Find Records for Logical OR
Finding Records Through a Relation
Finding Records within a Related Foundset
Special Operators
Operator
Description
Applicable Data Types
Example
Using Find Mode from Scripting without Using Special Operators or Spaces
Find Mode and the User Interface
Read-Only Fields
Complex Searches
Canceling Find Mode
Last updated
Was this helpful?