[REBOL] Speed required
From: kpeters:otaksoft at: 29-Nov-2007 9:50
I need to transform SQL cursors with up to 10,000 records and it needs to be fast:
Example cursor:
[
[ 100 "Joe Browne" "Chicago" 55 445-5689 ]
[ 101 "Joe Browne" "Chicago" 55 223-2221 ]
[ 102 "Joe Browne" "Chicago" 55 489-5555 ]
[ 103 "Joe Browne" "Chicago" 55 235-2245 ]
]
I need a copy of this cursor, but only containing certain fields from each record;
the desired fields should be specified in a block like:
[ 1 2 5 ] if I wanted record #, name & phone from each record in the
example above.
Any speedy suggestions?
TIA,
Kai