create cursor

This forum is meant for questions about the Visual FoxPro Language support in X#.

Post Reply
User avatar
kevclark64
Posts: 127
Joined: Thu Aug 15, 2019 7:30 pm
Location: USA

create cursor

Post by kevclark64 »

I often use the CREATE CURSOR command in Foxpro, such as

Code: Select all

CREATE cursor tnline (TestName c(32), rawscore I, Total I, Competence c(25),preparness c(25),Graph G)
CREATE CURSOR creates a temporary file that is deleted as soon as it is closed. It automatically handles creating the actual disk file and then deleting it at the appropriate time. I realize that I could create a file with DBCREATE and then delete it later, but I'm wondering if there's anything in XSharp that more directly corresponds to Foxpro's CREATE CURSOR functionality.
User avatar
robert
Posts: 4225
Joined: Fri Aug 21, 2015 10:57 am
Location: Netherlands

create cursor

Post by robert »

Kevin,

Unfortunately we do not support that (yet).
DbCreate() is the solution at this moment.

Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
Post Reply