For complex queries, Active Record Class allows method ________ to directly write parts of the SQL query.
- buildQuery()
- composeQuery()
- rawQuery()
- writeQuery()
The correct method for directly writing parts of the SQL query in Active Record Class is rawQuery(). This method is useful for handling complex queries where direct SQL is required.
Loading...
Related Quiz
- __________ is a key consideration when updating a third-party library to ensure minimal disruption in a CodeIgniter application.
- How does CodeIgniter's session management differ when using database versus file-based storage?
- CodeIgniter's performance in handling static assets can be improved by implementing ________.
- Custom libraries in CodeIgniter are typically loaded using the ________ function in the controller.
- The method ________ is used to update a resource in a RESTful API built with CodeIgniter.