Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to get SQL memo column
Message
De
19/11/1998 11:44:37
 
 
À
19/11/1998 11:37:56
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00159322
Message ID:
00159325
Vues:
16
>This code exemplifies what I want to do:
>
>
create table test (c1 c(254))
>insert into test (c1) values (replicate('X', 254))
>
>select (testa.c1 + testb.c1) as MemoCol from test testa, test testb
>
>How can I make the column named MemoCol a memo field?

create table test (c1 c(254))
insert into test (c1) values (replicate('X', 254))
create cursor tmp (dummy M)
insert into tmp values("")
select dummy+c1 as memocol from test,tmp
Edward Pikman
Independent Consultant
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform