Does anyone know of any way of speeding up the row fetching from a database query result? Say there are 1000 rows in the result, is there any better way than having to fetch the 1000 rows with mysql_fetch_row()? Thanks Olivier
you could select it into an outfile and then include the outfile i guess... but row fetching is probably your best bet and why you use databases in the first place