[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: KB Entry P133222

  • Thread starter Thread starter jquerijero
  • Start date Start date
Status
Not open for further replies.
J

jquerijero

Guest
Your temp-table has no defined index that is why it is working without the RELEASE statement. [quote user="Kunal Berlia"] DEFINE TEMP-TABLE tttable no-undo FIELD tablename AS CHARACTER . DEFINE BUFFER btable FOR tttable. EMPTY TEMP-TABLE tttable. PROCEDURE ip_a: CREATE tttable. ASSIGN tttable.tablename = "customer" . //RELEASE tttable. RUN ip_b. END . PROCEDURE ip_b: FOR each btable NO-LOCK : MESSAGE btable.TABLENAME VIEW-AS ALERT-BOX . END . END . RUN ip_a. Using this, it is allowing me to show the buffer of for each Without release statement. Does this is considering the whole procedure as transaction? [/quote]

Continue reading...
 
Status
Not open for further replies.
Back
Top