I have to to set DboSource::$cacheMethods to false (http://
api13.cakephp.org/view_source/dbo-source/#line-64).
Tried it this (and many other) way(s).
But apparently it does not work.
I really need to disable this caching but only for this shell.
<?php
class MyShell extends Shell
{
var $uses = array(...............);
function initialize()
{
App::import("ConnectionManager");
$db =&ConnectionManager::getDataSource('local');
$db->cacheMethods = false;
parent::initialize();
}
function main()
{
....
}
I also tried the same in the startup- and in the main-function.
Check out the new CakePHP Questions site http://cakeqs.org and help others with
their CakePHP related questions.
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en