Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can I add a blank memo to a cursor via select
Message
From
04/06/2003 16:19:21
 
 
To
04/06/2003 14:59:14
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00796309
Message ID:
00796366
Views:
12
This message has been marked as a message which has helped to the initial question of the thread.
>
SELECT *, space(50) as blnkchar;
> from dbtwiz!tactualdata;
> WHERE thisform.zgettoolset(tactualdata.fkey)==thisform.ztoolset;
> into cursor cExport readwrite
>any suggestions?, Thanks

in VFP 8, you can also do something like this:
Create Cursor temp (fld1 c(10), fld2 M)

Insert into temp (fld1, fld2);
	Select somefield, anotherfield from TableWhatever
benefiting from the Insert-SQL from a Select-SQL statement.

HTH
Claudio Lassala
Previous
Reply
Map
View

Click here to load this message in the networking platform