Hello
In this example the row should be removed, so I think. Can someone help me? And how can I drop this free table? When I try this in an example then it works but when I use this in my application in which I use a database then it doesn't work.
Thanks
Code:
CREATE TABLE temp FREE (idpr i(10))
INSERT INTO temp (idpr) VALUES (232323)
INSERT INTO temp (idpr) VALUES (78979)
INSERT INTO temp (idpr) VALUES (3865678)
DELETE FROM temp WHERE idpr = 78979
SELECT * FROM temp INTO CURSOR cur
SCAN
MESSAGEBOX(idpr)
ENDSCAN
In this example the row should be removed, so I think. Can someone help me? And how can I drop this free table? When I try this in an example then it works but when I use this in my application in which I use a database then it doesn't work.
Thanks