[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Adding a case sensitive field to a dynamic temp-table

Status
Not open for further replies.
S

Stefan Drissen

Guest
Peter Judge As I wrote, using the static tt for the dynamic tt does not inherit the case-sensitive - (on 11.7.4 or 12.0): define temp-table tt field cc as char case-sensitive . create tt. tt.cc = "Hi". message tt.cc = "Hi". message tt.cc = "hi". def var ht as handle no-undo. def var hb as handle no-undo. create temp-table ht. ht:add-like-field( "cc", "tt.cc" ). ht:temp-table-prepare( "tt" ). hb = ht:default-buffer-handle. hb:buffer-create(). hb::cc = "Hi". message hb::cc = "Hi". message hb::cc = "hi". abldojo.services.progress.com:443/

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