Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
FYI; Problem with PADL; .NULL. in SELECT SQL
Message
 
 
To
22/06/2009 09:09:14
Lutz Scheffler
Lutz Scheffler Software Ingenieurbüro
Dresden, Germany
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP2
Miscellaneous
Thread ID:
01407500
Message ID:
01407535
Views:
34
>I see the problem with NVL in my testing - I have adressed the wrong target in this test, so NVL works as expected by you and Gregory.
>
>But it the it will return a string instead of .NULL. what is wrong again.

I found this solution (for older VFP versions) - haven't tested it too much
CREATE CURSOR curTest (i1 I NULL)

INSERT INTO curTest VALUES (.NULL.)
delete
INSERT INTO curTest VALUES (1)
INSERT INTO curTest VALUES (20)

CREATE CURSOR t1 (charF C (11) NULL)
INSERT INTO t1 VALUES (null)

SELECT IIF(ISNULL(i1),charF,PADR(i1,11)) FROM curTest, t1
MODIFY STRUCTURE
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform