Forum Post: RE: json and rowids

  • Thread starter Thread starter Richard.Kelters
  • Start date Start date
Status
Not open for further replies.
R

Richard.Kelters

Guest
I may be missing the point but you should not convert is yourself but leave it to OpenEdge. Like this: def temp-table tt no-undo field rw as rowid. create tt. tt.rw = rowid(tt). temp-table tt:handle:write-json("file","c:\temp\tt.json"). /* strange tt is not available anymore */ for each tt: delete tt. end. temp-table tt:handle:read-json("file","c:\temp\tt.json"). find first tt. message rowid(tt) eq tt.rw view-as alert-box.

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