I have two tables. A users table and a profile table. The profile table has a foreign key of users_id. The models for the tables are set up with one to one relationships. When I try and save some data
I\'m just getting to grips with Doctrine, and using the suggested lazy loading of models. As per the tutorials, I\'ve created a doctrine bootstrap file:
I would like to know if Doctrin开发者_运维知识库e 2 Beta 3 is stable enough to use for a production project? Do you have any success stories about it? What about api stability in general, and especial
I\'m having some issues with altering a table in the migr开发者_开发问答ations of doctrine 2. Following code always throws the error: Operation \'Doctrine\\DBAL\\Platforms\\AbstractPlatform::getAlterT
I\'m using Symfony 1.4 with Doctrine. Here\'s my initial schema: Page: tableName: page columns: ref: type: string(50)
Does using prepared statements in Zend_DB or Doctrine protect me from sql injection? example: $stmt = $db->prepare(\'SELECT * FROM users WHERE name = ? AND password = ?\');
I have the following code blocks: class MerchantStoreForm extends sfForm { public function configure() { $this->disableCSRFProtection();
I managed to get my Zend modular project working with Doctrine 1.2 according to these instructions http://github.com/beberlei/zf开发者_如何学Go-doctrine and I have one question:
I am working through the doctrine 2 (Beta3) sandbox and trying to apply the Zend Framework coding convention of placing a leading underscore to private class members. When I query Address, while its p
I have small problem when trying to create many-to-many link in doctrine. I have simple scenario here: User and Role with many-to-many relationship defined.