Select from following answers:- Integrated Security=SSPI;database=northwind;server=dataServer;MultipleActiveResultSets=true

- Integrated Security=SSPI;database=northwind;server=dataServer;Max Pool Size=100
- Create the SqlConnection as a singleton.
- All Above
When you set the MultipleActiveResultSets to True, an application can maintain multiple active result sets (MARS). When False, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection.
Setting Max Pool Size sets the maximum number of connections that are allowed in the pool. It does not enable multiple active result sets (MARS).
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator