Kbase P115878: DataServer for Microsoft SQL Server guide shows incorrect syntax
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  08/05/2006 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.1x
MS SQL DataServer
SYMPTOM(s):
Incorrect example syntax in documentation.
DataServer for Microsoft SQL Server guide section 2.4.8
MS SQL dataserver documentation gives the following example
DEFINE QUERY myquery FOR customer FIELDS (cust_num name) SCROLLING NO-LOCK.
CAUSE:
Documentation is incorrect.
FIX:
The OpenEdge 10.1A documentation has been updated and shows the correct example code:
DEFINE QUERY myquery FOR customer FIELDS (cust_num name) SCROLLING.
OPEN QUERY myquery FOR EACH customer NO-LOCK WHERE cust_num < 6 BY name.