【发布时间】:2012-07-20 19:55:51
【问题描述】:
例如,我有一个光标
select col1, col2, col3, col4, colN from cursor into into array thecursor
我当前的光标是光标
我已经得到了它所有的数据信息,包括null,null信息
我怎样才能把它变成一个txt:
col1, col2, col3, col4, colN
a,b,c,d,e
1,2,3,4,5
a1,b1,,d1,e1
11,12,13,14,
,bb,cc,dd,ee
所以你可以在行中看到
a1,b1,,d1,e1 我在 b1 和 d1 之间有一个空值
所以你可以看到我在行有一个空值
`11,12,13,14,`(here null value)
我在最后一行有一个空值
(here null value), cc,dd,ee
所以我想要这个最终的txt文件
col1, col2, col3, col4, colN
a,b,c,d,e
1,2,3,4,5
a1,b1,,d1,e1
11,12,13,14,
,bb,cc,dd,ee
**I need this was dynamic i refer it receive a cursor and do it with any cursor
【问题讨论】:
标签: foxpro fgets visual-foxpro fputs