Editing a forum with a boatload of members.. - Posted (1275 Views)
Senior Member
bobby131313
Posts: 1163
1163
I'm cruising up close to 20K members. That list takes what seems an eternity to load when editing forum properties. It takes around thirty seconds to generate the page because of the "Allowed Member List". Has anyone converted this to a text box to add a member instead of pulling the entire list?
 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Senior Member
bobby131313
Posts: 1163
1163
Yeah, but doesn't...
strSql = "SELECT MEMBER_ID, M_NAME "
need to be...
strSql = "SELECT MEMBER_ID, M_NAME, M_POSTS "
Posted
Development Team Member
Davio
Posts: 12217
12217
No, bobby. Why do you think it does?
Posted
Senior Member
bobby131313
Posts: 1163
1163
Hmmm... just thought you had to select it from the DB before you could use it.
So if you use it in the "where" part that's good enough?
Posted
Snitz Forums Admin
ruirib
Posts: 26364
26364
In the SELECT clause you need only to include the columns you want to have in the resulting recordset. You don't need to include a column that you will only use to apply a condition, like in this case, Bobby.
Posted
Senior Member
bobby131313
Posts: 1163
1163
Ahhh.... gotcha. Thanks.
You Must enter a message