Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Check Numeric
Message
De
08/09/2004 05:31:23
 
 
À
08/09/2004 04:40:32
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Divers
Thread ID:
00939224
Message ID:
00940213
Vues:
15

Well, then it is a documented one. It surprised me at first, but then, it's not that surprising at all.
Char fields are right padded with blanks. So empty() does not know whether you inserted space(0) or space(4) for char fields. But for memo fields it does.

It's all described in the help.

Still, it's tricky

create cursor ppp(ppp M)
insert into ppp (ppp) values (space(4))
?empty(ppp) && FALSE
qqq=ppp
?empty(qqq) && TRUE !!


Well, then it is a design bug documented one!

With this, ISBLANK() and EMPTY() are equal for a memo;
then , if ISBLANK() can do this, why make confusion in the EMPTY() ?
None sense, a design bug.

Correct implementation is :
clear
create cursor ppp(ppp M)

APPEND BLANK
? isblank(ppp),empty(ppp) && expected .T. , .T.

insert into ppp (ppp) values ('')

? isblank(ppp),empty(ppp) && expected .T. , .T.

insert into ppp (ppp) values (' ')

? isblank(ppp),empty(ppp) && expected .F. , .T.

SCATTER MEMO MEMVAR

? isblank(m.ppp),empty(m.ppp) && expected .T. , .T.
Fabio
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform