I have some code in my app that works well to get memo contents into a csv file.
I create a table including LEFT(Descript,255)As Desc,; in the select statement.
I am trying to do a live test to check some data and I cannot get the above line to work - I get a ltablerror = .t.
this code works OK
Select idexhibit As Exh_Num;
From john_i;
INTO Array amycursor1
this code gives that error
lTableError = .F.
Select idexhibit As Exh_Num,;
zname As Topic ,;
LEFT(Descript,255)As Desc,;
id_person As IMG_No;
FROM john_i;
INTO Array amycursor1
It does not form an array.
I can't see the wood form the trees - can anyone see the problem please?
Coldan
I create a table including LEFT(Descript,255)As Desc,; in the select statement.
I am trying to do a live test to check some data and I cannot get the above line to work - I get a ltablerror = .t.
this code works OK
Select idexhibit As Exh_Num;
From john_i;
INTO Array amycursor1
this code gives that error
lTableError = .F.
Select idexhibit As Exh_Num,;
zname As Topic ,;
LEFT(Descript,255)As Desc,;
id_person As IMG_No;
FROM john_i;
INTO Array amycursor1
It does not form an array.
I can't see the wood form the trees - can anyone see the problem please?
Coldan