When using connection pooling, the database connection remains open in a ___________ state.
- Active
- Closed
- Idle
- Reserved
Connection pooling is a technique used to manage database connections efficiently. When a connection is not actively being used, it enters an idle state, ready to be reused. This helps in reducing the overhead of opening and closing connections frequently.
Loading...
Related Quiz
- When binding data to a ListBox, what is the significance of the DataValueField property?
- Which event is triggered when a user selects a row in a DataGrid or DataGridView control?
- What are the common strategies for handling data conflicts in ADO.NET?
- Entity Framework supports different query execution modes, such as _______ and _______.
- How can you manage the state of a database connection in ADO.NET?