Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Creating addition memo column
Message
From
21/03/2003 17:36:45
 
 
To
21/03/2003 17:16:37
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00768811
Message ID:
00768821
Views:
22
>Hi Again,
>
>I started with the following statement...
>
>SELECT A.*, SPACE(254) as Junk FROM Parts A INTO CURSOR Temp READWRITE
>
>Then I came across that 254 characters is not long enough and I am thinking of creating 'Junk' as Memo datatype. Is this possible? TIA

To further what Michel started:
CREATE CURSOR dummymemo (test M)
SELECT 0
USE othertable
SELECT othertable.*,dummymemo.test from othertable INTO CURSOR test READWRITE
This should yield you a cursor with what you're looking for.
Fred
Microsoft Visual FoxPro MVP

foxcentral.net
Previous
Reply
Map
View

Click here to load this message in the networking platform