10.01.2012, 14:34
How exactly do you execute your querys?
I mostly do it like this when I'm required to get a big amount of columns:
This never crashed my server even though my users table
has something between 50 and 100 columns.
It would be good if you posted the relevant part of your code,
because the error maybe is hidden somewhere else.
I mostly do it like this when I'm required to get a big amount of columns:
Код:
mysql_query("SELECT * FROM `users`"); mysql_store_result(); while(mysql_retrieve_row()) { mysql_fetch_field_row(variable, "name"); /* * more code */ } mysql_free_result();
has something between 50 and 100 columns.
It would be good if you posted the relevant part of your code,
because the error maybe is hidden somewhere else.