Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SELECT data from a Char type field into a Memo type fiel
Message
From
31/12/1999 05:53:30
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00310779
Message ID:
00310853
Views:
24
>Does anybody know how to do SQL SELECT statement that will move data from a character type field and move it into a memo field in the cursor?
>
>This is not trying to pull data from an existing memo field, but trying to create a new memo field that is populated with the data from the character field and will be massaged later on in the code.
>
>
>CREATE CURSOR memotable (mfield M)
>INSERT INTO memotable (mfield) VALUES ('')
>SELECT mfield FROM memotable ;
>       UNION (SELECT cfield FROM chartable) ;
>       INTO CURSOR memocursor
>
>gives a UNION INCOMPATIABLE ERROR.
>
>Any suggestions?


Fred,
Should it be strictly one SQL "select" ? Append from instead ? ie:

create cursor memotable (mfield M)
select cfields as mfield from chartable into cursor transfer nofilter
select memotable
append from dbf("transfer")

Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform