Note: You can specify the OUTER-JOIN, OF, WHERE, USE-INDEX, TABLE-SCAN, and USING options in any order. You cannot use field-list in an OPEN QUERY statement. You cannot use OUTER-JOIN or EXCLUSIVE-LOCK in a CAN-FIND function.The name of a database table, a temp-table that you named in a DEFINE TEMP-TABLE statement, or a buffer that you named in a DEFINE BUFFER statement. If record is the name of a table, record actually refers to the default buffer of the specified database table or temp-table. Also, the default buffer for a database table is always scoped to the main external procedure or class definition block even if you reference the default buffer in a sub-block, such as an internal procedure or method of a class.
dbname.tablenameYou do not have to qualify the reference if record is the name of a defined buffer.
Note: Field lists should be used with caution because they can cause unexpected runtime errors. It is possible, for example, that you may have eliminated a field that is required by a new or revised subroutine or trigger. The result can be a runtime error that may be difficult to debug.
You can use the -rereadfields startup option if you have unexpected runtime errors resulting from field lists. When an error occurs, the -rereadfields startup option causes the AVM to ignore the field list and to fetch the entire record.
Also note the difference between -rereadfields and -fldisable. The Field List Disable (-fldisable) option causes the AVM to ignore all field lists. The Reread Field List (-rereadfields) option causes the AVM to ignore only those field lists that raise an error due to a missing field. Therefore, using -rereadfields is likely to have less of a negative impact on performance.
field )FIELDS (EXCEPT ( field )
The FIELDS option specifies the fields you want to include in a record retrieval, and the EXCEPT option specifies the fields that you want to exclude from a record retrieval. The field parameter is the name of a single field in the specified table. If field is an array reference, the whole array is retrieved even if only one element is specified. Specifying FIELDS with no field references causes the AVM to retrieve sufficient information to extract the ROWID value for a specified record (returnable using the ROWID function). Specifying EXCEPT with no field references or specifying record without a field-list causes the AVM to retrieve a complete record.
FOR EACH customer FIELDS (name balance): DISPLAY name balance.
FOR EACH Customer EXCEPT (Name Balance):DISPLAY Customer EXCEPT Customer.Name Customer.Balance.
Retrieves a complete record when the record is fetched with EXCLUSIVE-LOCK. This ensures proper operation of updates and the local before-image (BI) file. For information on the local BI file, see OpenEdge Data Management: Database Administration.
Retrieves a complete record for DataServers that do not support SHARE-LOCK. For more information, see the appropriate DataServer guides (OpenEdge Data Management: DataServer for Microsoft SQL Server, OpenEdge Data Management: DataServer for ODBC, and OpenEdge Data Management: DataServer for Oracle).This statement retrieves the Customer.CustNum field in addition to those specified in the field lists because it is required to satisfy the inner join between the Customer and Order tables:
FOR EACH Customer FIELDS(Name) NO-LOCK,EACH Order FIELDS(OrderNum SalesRep) OF Customer NO-LOCK:DISPLAY Customer.Name Customer.CustNum Order.OrderNum Order.SalesRep.However, do not rely on the AVM to always provide such extra fields. For reliability, add the CustNum field to the Customer field list as follows:
FOR EACH Customer FIELDS(Name CustNum) NO-LOCK,EACH Order FIELDS(OrderNum SalesRep) OF Customer NO-LOCK:DISPLAY Customer.Name Customer.CustNum Order.OrderNum Order.SalesRep.
FIND Customer 1.The AVM converts this FIND statement with the constant option of 1 to the following statement:
FIND Customer NO-LOCK WHERE Customer.CustNum = 1.The CustNum field is the only component of the primary index of the Customer table.If you use the constant option, you can use it only once in a single Record phrase, and it must precede any other options in the Record phrase.LEFT OUTER-JOINSpecifies a left outer join between record and the table (or join) specified by the previous Record phrase(s) of an OPEN QUERY statement. A left outer join combines and returns data from the specified tables in two ways. First, the records selected for the table (or join) on the left side combine with each record selected using the OF or WHERE options from the table on the right (record). Second, the records selected for the table (or join) on the left side combine with the Unknown value (?) for the fields from the table on the right (record) for which no records are selected using the OF or WHERE options. The join is ordered according to the given sort criteria starting with the left-most table in the query.
Note: If you specify the OUTER-JOIN option, you must also specify the OUTER-JOIN option in all succeeding Record phrases of the query to obtain a left outer join. That is, for multiple Record phrases, all joins in the query following your first left outer join must also be left outer joins. Otherwise, the result is an inner join for all records up to the last inner join in the query. For more information, see OpenEdge Getting Started: ABL Essentials.The OUTER-JOIN option is supported only in the OPEN QUERY statement and in Record phrases specified after the first Record phrase in the OPEN QUERY statement. The LEFT keyword is optional with OUTER-JOIN. If you specify OUTER-JOIN, you must also specify the OF option, WHERE option, or any combination of the OF and WHERE options. These options are required to select record (the right-most table) for the specified left outer join. For example:
OPEN QUERY q1 PRESELECT EACH Customer,FIRST Order OUTER-JOIN OF Customer WHERE Order.OrderNum < 50FIRST OrderLine OUTER-JOIN OF Order WHERE OrderLine.ItemNum < 15.This query specifies a left outer join between Customer and Order, and also between that join and OrderLine. Thus, for each Customer record that has no Orders or has no Orders with an OrderNum less than 50, the query returns the Customer fields and ? for all fields of the Order and OrderLine tables. In addition, if there are no OrderLine records with ItemNum less than 15 for any selected Customer and Order, the query returns ? for all fields of OrderLine. Otherwise, it returns each Customer record along with its first selected Order record and OrderLine record.In all statements where multiple Record phrases are allowed (including DO, FOR, OPEN QUERY, and REPEAT statements), the default join (without the OUTER-JOIN option) is an inner join between record and the table (or join) specified by the previous Record phrase(s). An inner join returns the records selected for the table (or join) on the left side combined with each selected record from the table on the right (record). For an inner join, no records are returned for the table (or join) on the left for which no record is selected from the table on the right (record).The following query specifies an inner join between Customer and Order, and also between that join and OrderLine. Thus, this query only returns Customer records that have at least one Order with OrderNum less than 50 that also have at least one OrderLine with ItemNum less than 15, and it returns just the first such Order and OrderLine for each Customer record.
OPEN QUERY q1 PRESELECT EACH Customer,FIRST Order OUTER-JOIN OF Customer WHERE Order.OrderNum < 50FIRST OrderLine OF Order WHERE OrderLine.ItemNum < 15.
Note: If you specify a Record phrase as an inner join, the current Record phrase and all preceding Record phrases in the query participate in contiguous inner joins, even if prior Record phrases specify the OUTER-JOIN option. Thus, for multiple Record phrases, all joins in the query up to the right-most inner join result in contiguous inner joins. For more information, see OpenEdge Getting Started: ABL Essentials.For more information on joins in ABL, see OpenEdge Getting Started: ABL Essentials.OF tableRelates record to one other table specified by a table or buffer name (table). The relationship is based on common field names between record and table that also participate in a UNIQUE index for either record or table. When you use OF and the UNIQUE index is multi-field, all fields in the index participate in the match criteria. A reference to table must appear in a prior joined Record phrase in the same statement, or remain in scope from a prior record reading statement, such as a FIND statement.
PROMPT-FOR Order.OrderNum.FIND Order NO-LOCK USING Order.OrderNum.DISPLAY Order.FIND Customer OF Order NO-LOCK.DISPLAY customer.
FIND Customer NO-LOCK WHERE Customer.CustNum = Order.CustNum.WHERE expressionQualifies the records you want to access. The expression is a constant, field name, variable name, or expression whose value you want to use to select records. You can use the WHERE keyword even if you do not supply an expression. For example:
FOR EACH Customer NO-LOCK WHERE {*}The WHERE clause may not work the same way against a DataServer as it does against the OpenEdge database. Refer to the appropriate DataServer Guide (OpenEdge Data Management: DataServer for ODBC or OpenEdge Data Management: DataServer for Oracle), for additional information on how this feature will perform.
Note: Use the -noroutineinwhere parameter to force the compiler to raise an error, if the WHERE expression contains a user-defined function, a class method, or a class property, which implements the GET method using ABL statements.
field CONTAINS search-expressionIn this syntax, field represents a field in which a word index has been defined. The search-expression specifies one or more words to search for. It must evaluate to a string with this syntax:
"word & | ! ^ word "Each word is a word to search for. The ampersand (&) represents a logical AND; the vertical line (|), exclamation point (!), or caret (^) represent a logical OR. You can use an asterisk (*) as a wildcard, but only at the end of a word. Using an asterisk anywhere else in a word raises an error.
FOR EACH Item NO-LOCK WHERE Item.CatDescription CONTAINS "ski":DISPLAY Item.ItemName Item.CatDescription VIEW-AS EDITOR SIZE 60 BY 15.END.
WHERE Item.CatDescription CONTAINS "ski & (gog* ! pol*)"
Note: For information about compiling, storing, and applying the UTF-8 word-break rules to a database, see OpenEdge Development: Internationalizing Applications.TENANT-WHERE expression SKIP-GROUP-DUPLICATESAllows a super tenant to specify which tenants are to be included in a query, where expression is a relational operation, or a logical combination of relational operations, that test for a character or integer expressions that correspond to a tenant name or tenant ID, respectively. In order to use the TENANT-WHERE functionality at run time, you must be a super tenant, not a regular tenant.
Note: This option does not change the effective tenancy for a super tenant. For more information on effective tenancy, see the entry for the SET-EFFECTIVE-TENANT function.Note that any use of the TENANT-ID or TENANT-NAME functions in a TENANT-WHERE expression must not specify the optional database parameter, as the compiler assumes the database is the same as for the query in which the TENANT-WHERE option is specified.For more information on this option, and examples, see the sections on multi-tenant ABL in OpenEdge Development: Programming Interfaces.USE-INDEX indexYou can use the TABLE-SCAN option as an alternative to the USE-INDEX keyword in FOR EACH statements.
FOR EACH record USE-INDEX index TABLE-SCAN
FOR EACH mytable TABLE-SCAN:totalCost = totalCost + mytable.costEND.Here mytable is in a Type II Storage area. The AVM uses TABLE-SCAN instead of WHOLE-INDEX to access the record blocks. The AVM accesses both primary index and record blocks, if the WHOLE-INDEX keyword is used.For more information, see also Web Paper: ABL Database Triggers and Indexes.
PROMPT-FOR Customer.CustNum.FIND Customer NO-LOCK USING Customer.CustNum.
FIND Customer NO-LOCK WHERE Customer.CustNum = INPUT Customer.CustNum.The CustNum field is a non-abbreviated index. However, if the Name field is an abbreviated index of the Customer table, the AVM converts the FIND statement with the USING option. For example:
PROMPT-FOR Customer.Name.FIND Customer NO-LOCK USING Customer.Name.
FIND Customer NO-LOCK WHERE Customer.Name BEGINS INPUT Customer.Name.
DEFINE VARIABLE rid AS ROWID NO-UNDO.rid = ROWID(customer).FIND Customer EXCLUSIVE-LOCK WHERE ROWID(Customer) = rid.If a procedure finds a record and it places it in a buffer using NO-LOCK and you then refind that record using NO-LOCK, the AVM does not reread the record. Instead, it uses the copy of the record that is already stored in the buffer. To make sure the AVM gets a fresh copy of the record from the database, you must release all NO-LOCK buffers referencing the record or retrieve the record with EXCLUSIVE-LOCK. Note that you can use the Reread Nolock (-rereadnolock) startup parameter to change this default behavior.When you read records with NO-LOCK, you have no guarantee of the overall consistency of those records because another user might be in the process of changing them. When values are assigned to indexed fields for a newly created record or are modified in an existing record, the index is immediately updated to reflect the change. However the copy of the data record in the buffers used by the database server might not be updated until later in the transaction. For example, the following procedure might display a CustNum of 0 if another user’s active transaction has created a record and assigned a value to the indexed field CustNum that is greater than 100:
FOR EACH Customer NO-LOCK WHERE Customer.CustNum > 100DISPLAY Customer.CustNum.END.Specifies that only one record is sent across the network at a time. If you specify field-list, only the specified fields and any additional fields required for record selection are sent. If you do not specify this option, the AVM can send more than one record from the server to the client in each network packet.In the r-recph.p procedure, there are two Record phrases that make an inner join between the Customer and Order tables.
FOR EACH Customer WHERE Customer.CreditLimit GE 50000,EACH Order OF Customer:DISPLAY Customer.CustNum Customer.Name Customer.CreditLimit Order.OrderumOrder.OrderDate Order.Terms.END.Using these Record phrases, the FOR EACH block reads a Customer record only if it has a CreditLimit value greater than 50000 and at least one Order record associated with it.
REPEAT:FIND NEXT Customer USE-INDEX CountryPost WHERE Customer.Name BEGINS "S"EXCLUSIVE-LOCK.UPDATE Customer.Name Customer.Country Customer.PostalCode Customer.Phone.END.In the r-recph2.p procedure, there is one Record phrase:
Customer USE-INDEX CountryPost WHERE Customer.Name BEGINS "S" EXCLUSIVE-LOCKUsing the zip index named country-post rather than the CustNum index (the primary index for the Customer table), the FIND statement reads only those Customer records that have a Name that begins with an s. The FIND also places an EXCLUSIVE-LOCK on each record as it is read. This lock is released at the end of the REPEAT block.
Specifying a field list (field-list) for record can increase the performance of remote (network) record retrieval substantially over specifying record alone.
You can specify the Field List Disable (-fldisable) or the Reread Field List (-rereadfields) startup parameters to cancel field list retrieval and force the AVM to retrieve complete records. These are run-time client session parameters that are especially useful for deployed applications whose database triggers are later redefined to reference unfetched fields (raising the ERROR condition).Note the difference between -rereadfields and -fldisable. The Field List Disable (-fldisable) option causes the AVM to ignore all field lists and to fetch the entire record for every query. The Reread Field List (-rereadfields) option causes the AVM to ignore a particular field list and fetch the entire record only when an error occurs due to a missing field. Therefore, using -rereadfields is likely to have less of a negative impact on performance.
You can reference any of the following functions and attributes in the expression of a WHERE or TENANT-WHERE option as long as the buffer specified for the function or attribute is not the same as the buffer of the query or FOR EACH statement:
© 2013 Progress Software Corporation and/or its subsidiaries or affiliates. |