Zend Db SQLITE Setup Zend Db SQLITE Setup sqlite sqlite

Zend Db SQLITE Setup


Try using APPLICATION_PATH and relative path instead ROOT. Maybe you have open_basedir restriction or authorization problem


I have managed to sort this problem out.

The adapter was using the mysql user and password details to try and connect to sqlite so i have had to force the adapter to change over like so:

public function __construct($config = array()){    $this->_setAdapter(Zend_Registry::get('dbReports'));    parent::__construct($config);}

This is in the file class Table_Reports