Domanda

Hello I want to make a select statement in openedge procedure eduitor

and as I'm so so new to Propgress and everything is so strange to me having in mind that I have only wirked with MSSQL and . SO Suppose I have an articlegroup table

  1. First how to see all records from all the fields of this table - Select * from articlegroup
  2. Then how to add a where clause
È stato utile?

Soluzione

Welcome to the wonderfully different world of OpenEdge :)

FOR EACH articlegroup Where whereClauseGoeshere:
    /*do what you want with the record buffer*/
    DISPLAY articlegroup.
END.

here is a place for you to start with: http://documentation.progress.com/output/OpenEdge102b/pdfs/gsabl/gsabl.pdf

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top