Disabling query caching in DboMssql::listSources(), fixes #5514

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7701 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
nate 2008-10-04 22:06:56 +00:00
parent 34c5f74300
commit ae8a6b958a

View file

@ -186,7 +186,7 @@ class DboMssql extends DboSource {
if ($cache != null) { if ($cache != null) {
return $cache; return $cache;
} }
$result = $this->fetchAll('SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES'); $result = $this->fetchAll('SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES', false);
if (!$result || empty($result)) { if (!$result || empty($result)) {
return array(); return array();