local help = CSelectHelp();
--1.产生调试数据
help:genDebugData();
help:dumpEx('原始数据');
local sValue = help:col2String('age',',');
print(sValue); --10,11,12,13,14
local sValue = help:col2StringPoint('age',',');
print(sValue); --'10','11','12','13','14'