newLISP Fan Club

Forum => Anything else we might add? => Topic started by: Jeff on May 09, 2007, 05:56:24 PM

Title: Error in MySQL module
Post by: Jeff on May 09, 2007, 05:56:24 PM
In the function fetch-all, the uninitialized symbol 'all continues to collect results after multiple queries, stacking them subsequently.



To fix, change (define (fetch-all) to (define (fetch-all , all):


(define (fetch-all , all)
  (dotimes (x (num-rows)) (push (fetch-row) all))
  (if all (reverse all) '()))