Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Force cursor field to accept NULL
Message
From
07/11/2005 13:42:57
 
 
To
04/11/2005 12:31:40
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01065472
Message ID:
01066125
Views:
18
good point, if VFP9 and CAST is not at hand.

But you don't need to join the template table.

You may use the same template trick to define a memo field without CAST:
create cursor curFieldTemplate (mMemo M nocptrans)
append blank

Select sometable.*, curFieldTemplate.mMemo As mNewMemo from sometable;
into cursor curResult Readwrite
not joining curFieldTemplate and not putting it in the FROM-Clause of the select simply reads the active record from curFieldTemplate, like
? curFieldTemplate.mMemo
would do.

Bye, Olaf.
Previous
Reply
Map
View

Click here to load this message in the networking platform