Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Increment Field
Message
From
11/04/2008 15:27:08
Jay Johengen
Altamahaw-Ossipee, North Carolina, United States
 
 
To
11/04/2008 15:04:52
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Environment versions
Visual FoxPro:
VFP 9 SP2
Miscellaneous
Thread ID:
01309981
Message ID:
01310031
Views:
35
Worked like a charm. I always seem to get myself caught up in trying to do everything in SQL, or worse, one SQL.

>Hmm, set-oriented SQL is not always the best choice for row-oriented logic like this. You might be better off sticking with xBASE:
>
>m.lnOffset = < some integer value >
>
>SELECT ;
>  MyColumnOne ;
>  , MyColumnTwo ;
>  , CAST( 0 AS I ) AS IncColumn ;
>  ...
>  INTO CURSOR Output ;
>  ORDER BY ... ;
>  NOFILTER READWRITE
>
>SELECT Output
>REPLACE ALL ;
>  IncColumn WITH RECNO( "Output" ) + m.lnOffset ;
>  IN Output
>
Previous
Reply
Map
View

Click here to load this message in the networking platform