Displaying 1 result from an estimated 1 matches for "col3_name_pair".
Did you mean:
col2_name_pair
2009 Jan 02
2
Deprecated Realtime application, what's to be gained ???
...y|col1|val1|prefix_);
NoOp(${prefix_col2});
NoOp(${prefix_col3});
No you have to
Set(row="${REALTIME(family,col1,val1)}");
Set(col2_name_pair=${CUT(row,"|",2)});
Set(col2_value=${CUT(col2_name_pair,"=",2)});
NoOp(${col2_value});
Set(col3_name_pair=${CUT(row,"|",3)});
Set(col3_value=${CUT(col2_name_pair,"=",3)});
NoOp(${col3_value});
2 more lines per data access, and that's only you you know for sure the
column orders,
otherwise it will be more complicated,
I fail to see what's the bonus in here ...
may som...