Commit 71dfe484 by irul

Add get_compile_select() to DB Active Record

1 parent 667faf43
......@@ -1664,6 +1664,18 @@ class CI_DB_active_record extends CI_DB_driver {
// --------------------------------------------------------------------
/**
* Public Compile the SELECT statement
*
* @return string
*/
public function get_compile_select($select_override = FALSE)
{
return $this->_compile_select($select_override);
}
// --------------------------------------------------------------------
/**
* Compile the SELECT statement
*
* Generates a query string based on which functions were used.
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!