I have a simple doctrine code: $dql = Doctrine_Query::create() ->select(\'u.ident, u.username, u.email\')
I\'ve got the following database structure: Account: columns: email: string(255) name: type: string(255) UserRegistered:
My problem is very simple, yet I feel lost while looking at it ... I am currently working on a Symfony project located on an SVN repository.
i got a question in DQL how to pass session User id $vars[\'mood\'] = Doctrine_Query::create() ->select(’m.mood_name, a.id, m.account_id’)
I keep getting the following exception with a new resource Im making and i cant figure out why: PHP Fatal error:Uncaught exception \'Zend_Application_Bootstrap_Exception\' with message \'Circular res
My mysql connection setting: <?php mysql_connect(\"fanyer.fatcowmysql.com\", \"test_username\", \"test_password\") or die(mysql_error());
Is it possible to use doctrine on existing entity models like: class user{ protected $_id; protected $_name;
I am trying to put a symfony project on a client server for production. The website worked fine on ourcompany\'s server, but now i have this error :
I开发者_JAVA百科 have a problem in one of my projects, where I\'m using Doctrine as an ORM. For some reason, when rebuilding the models and database structure, Doctrine ignores the behaviors and rela
i got a (or rather 2) small question(s) from doctrine manual $conn->export->createTable(\'tes开发者_C百科t\', array(\'name\' => array(\'type\' => \'string\')));