View Single Post

   
  #9 (permalink)  
Old 02-27-2008, 06:01 AM
--CELKO--
 
Posts: n/a
Default Re: Probably dumb question

>> I want to call a procedure on each of the returned rows, in the order returned. <<

SQL is a set-oriented language!!! Let's get back to the basics of an
RDBMS. Rows are not records; fields are not columns; tables are not
files; there is no sequential access or ordering in an RDBMS, so
"first", "next" and "last" are totally meaningless.

We need more info ..

Reply With Quote