Details
-
Task
-
Resolution: Done
-
Major - P3
-
None
-
None
-
None
Description
DBQuery.prototype.toArray = function(){
if ( this._arr )
return this._arr;
var a = [];
while ( this.hasNext() )
a.push( this.next() );
this._arr = a;
return a;
}