Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Query memo field data
Message
 
 
À
01/05/2000 15:48:43
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00364884
Message ID:
00364899
Vues:
25
>Any tips on how to query and join data from both character fields and memo fields (memo data < 256 char)? The ultimate objective is to create a tab delimited text file where each record includes the memo field data. Thanks, Tom.

If myTable has a charcater field cField1 and a memo field mField2, then you can
SELECT cField1, mField2 + "" as cField2 ;
from myTable;
into cursor myCursor
and myCursor.cField2 will be the contents of the memo field.
Rick Borup, MCSD

recursion (rE-kur'-shun) n.
  see recursion.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform