Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Problem with ISBLANK and SELECT SQL
Message
De
18/06/2003 12:36:08
Cindy Winegarden
Duke University Medical Center
Durham, Caroline du Nord, États-Unis
 
 
À
18/06/2003 11:03:43
Lutz Scheffler
Lutz Scheffler Software Ingenieurbüro
Dresden, Allemagne
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00801174
Message ID:
00801251
Vues:
14
>Example
>
>SELECT;
> ISBLANK(Cur1.cField);
> FROM aTable AS Cur1
>
>this produces error 'Object Cur1 not found'
>
>If I do
>
>SELECT;
> ISBLANK(aTable.cField);
> FROM aTable
>
>all is fine.
>
>The problem occurs with ISBLANK(), EMPTY for example is fine.

Hi Agnes,

I get no errors with
CREATE CURSOR aTable (cField C(1))
INSERT INTO aTable VALUES ("1")
INSERT INTO aTable VALUES ("")
INSERT INTO aTable VALUES ("3")
SELECT;
 ISBLANK(Cur1.cField);
 FROM aTable AS Cur1
SELECT;
 ISBLANK(aTable.cField);
 FROM aTable
You might be interested in http://fox.wikis.com/wc.dll?Wiki~IsNullIsBlankEmpty
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform