Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select into a writable cursor?
Message
From
12/10/1998 07:00:50
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00144681
Message ID:
00145858
Views:
28
yes you can make this cursors writable.

using one of the following options


Option A

Select * from SomeTable ;
into cursor SomeCursor
=afields(nArr)
alias_nm = dbf()
crea cursor newCursor from array nArr
append from (alias_nm)
sele SomeCursor
use

this new cursor formed is writable.

Option B

Select * from SomeTable ;
into cursor SomeCursor

use dbf('SomeCursor') again in 0 alias NewCursor


You may find later option easier.
Previous
Reply
Map
View

Click here to load this message in the networking platform