I\'m sure I\'m doing something silly, but this is driving me crazy.
I\'m trying to loop through database results, create objects from those results, and add the obje
A few things:
It's most likely either you aren't created the array correctly or rs doesn't contain what you expect it to contain, and so [rs next] isn't getting called ever (if rs is nil, for example, no iterations of this loop would execute and you wouldn't have any sort of error).