I'm wondering about the internal functioning of the DataAccessAdapter class in the "adapter" mode.
LLBLGen Pro 2.0.0.0 (Final)
The typical use pattern for me is:
using(DataAccessAdapter adapter = new DataAccessAdapter()){
// some stuff
}
So that is I open a new one each time I want to do something. Is this a wise approach? If I want to be performing thousands of these statements a minute am I better off pooling adapters and closing them when they aren't being used? Or some strategy like that? Or are the adapters pooling themselves, and can I just relax and be happy
Thanks.