if i had for example
$result = $this->database("SELECT * FROM `products`");
while ($row = $results->fetch_array(MYSQLI_ASSOC))
{
echo $row['name']; //etc....
}
and one of the fields was a medium blob containing X amount of data for each row this would hog up a load of memory/system resources?
What would be the best method to prevent the BLOB data from being entered into results and using resources because at the moment each row is holding between 100kB and 200kB and if my logic is correct this is a lot of wasted resource.
thanks in advance
j