A part of my web app requires maximum performance. I notice when I use anything other than $db->exec, F3 makes a SHOW columns call. I realize why it's doing that. What I wanted to know though is can I define a class which describes the table, so a SHOW columns call is not necessary?
I also tried the Cortex add-on and have the table defined in a class, but it also still makes a SHOW columns call.
I know that such calls can get cached by mysql, I would still like to alleviate the unnecessary overhead since my schema will not be changing. Also, while we're at it, can you tell F3 to only bring back certain fields?
Thanks.