core
core copied to clipboard
Fuel PHP Framework - The core of the Fuel v1 framework
I've already added this functionality by adding the following method to Database_Query_Builder_Select class ``` public function calc_found_rows($value = true) { $this->_calc_found_rows = (bool) $value; return $this; } ``` It's pretty...
Remove all migrations and start again, equivalent of doing loads of :downs and then running it back up again.
**Issue** When using the PDO ODBC driver, which [does not implement **PDO::quote**](http://php.net/manual/en/pdo.quote.php), SQL syntax errors occur. **Reproduce** Connect to MySQL using the PDO ODBC driver: ``` 'default' => array( 'type'...
`migrate --all` is a useful feature. We're creating a system that can be installed a bit like Wordpress, where it runs migrations and sets up configs if it determines itself...
File Cache deletes all the subdirectory while APC Cache does not. Eg: if you call Cache::delete_all( 'cache/users' ), the file version will delete 'cache/users/0' and ''cache/users/1' Not the apc version
https://github.com/fuel/core/blob/1.9/develop/classes/database/query/builder/update.php Hello, maybe it could be interesting to add: protected $_where; protected $_execute; as_object, order_by... => Undefined method 'where'. Not to have error with Intelephense for a better debug for...