In the database configuration, the ________ setting determines whether to use persistent database connections.
- connection_persistence
- pconnect
- persistent
- use_persistent
In CodeIgniter's database configuration, the pconnect setting determines whether to use persistent database connections. Setting it to TRUE enables persistent connections, while setting it to FALSE disables them. Persistent connections help reduce the overhead of establishing a new connection for each request, improving performance.
Loading...
Related Quiz
- How does the Active Record Class handle SQL injection prevention in CodeIgniter?
- To override a built-in Helper in CodeIgniter, place the custom Helper in the ________ directory.
- To override default controllers, models, or libraries, the developer should place these in the ________ directory.
- In CodeIgniter, the setting $config['sess_ ________'] can be used to enable session encryption for added security.
- Which of the following best describes the 'View' component in MVC architecture?