active questions tagged doctrine - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T02:48:00Z http://stackoverflow.com/feeds/tag/doctrine http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1883906/entity-relationship-or-class-diagram-from-doctrine-yaml-or-mysql-db 0 Entity-relationship or class diagram from Doctrine YAML or MySQL db? Sam 2009-12-10T20:47:10Z 2009-12-11T00:48:30Z <p>Is there a way to generate a entity relationship diagram or class diagram from a Doctrine YAML schema?</p> <p>If not, is there a way to do it from an existing MySQL database?</p> http://stackoverflow.com/questions/1813420/how-to-make-doctrine-delete-table-prefixes-from-class-names 0 How to make Doctrine delete table prefixes from class names? xaguilars 2009-11-28T19:01:27Z 2009-12-11T00:15:05Z <p>Hello, I'm using Doctrine 1.1.5 and I'd like to know if there is some option for remove table prefix from files and class names when calling <em>Doctrine::generateModelsFromDb</em> or <em>Doctrine::generateModelsFromYaml</em>.</p> <p>Edit: For example I have tables like mo_article, mo_language, mo_article_text, etc. When Doctrine generates the models (using the functions from above), the class names will be MoArticle, MoLanguage, MoArticleText, ... but I want them to be Article, Language, ArticleText... Is there some option in those functions to avoid adding table prefixes in model class names?</p> <p>Thank you</p> http://stackoverflow.com/questions/1878727/zend-framework-doctrine-help-needed 0 Zend Framework, Doctrine Help needed iceangel89 2009-12-10T05:02:59Z 2009-12-10T20:48:30Z <p>i am following the tutorial from <a href="http://www.zendcasts.com/introducing-doctrine-1-2-integration/2009/11/" rel="nofollow">http://www.zendcasts.com/introducing-doctrine-1-2-integration/2009/11/</a></p> <p>i have a doctrine.php that "bootstraps?" doctrine ... sry i dont really fully understand the tut yet </p> <pre><code>// Define path to application directory defined('APPLICATION_PATH') || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/..')); // Define application environment defined('APPLICATION_ENV') || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production')); // Ensure library/ is on include_path set_include_path(implode(PATH_SEPARATOR, array( realpath(APPLICATION_PATH . '/../library'), get_include_path(), ))); /** Zend_Application */ require_once 'Zend/Application.php'; // Create application, bootstrap, and run $application = new Zend_Application( APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini' ); $application-&gt;getBootstrap()-&gt;bootstrap('doctrine'); $config = $application-&gt;getOption('doctrine'); $cli = new Doctrine_Cli($config); $cli-&gt;run($_SERVER['argv']); </code></pre> <p>when i try to run it via cmd, </p> <pre><code>php.exe doctrine.php </code></pre> <p>i get </p> <pre><code>D:\Projects\ZF\doctrine\application\scripts&gt;php -f doctrine.php PHP Fatal error: Uncaught exception 'LogicException' with message 'Passed array does not specify an existing static met hod (class 'Doctrine' not found)' in D:\Projects\ZF\doctrine\application\Bootstrap.php:7 Stack trace: #0 D:\Projects\ZF\doctrine\application\Bootstrap.php(7): spl_autoload_register(Array) #1 D:\ResourceLibrary\Frameworks\ZendFramework\library\Zend\Application\Bootstrap\BootstrapAbstract.php(662): Bootstrap- &gt;_initDoctrine() #2 D:\ResourceLibrary\Frameworks\ZendFramework\library\Zend\Application\Bootstrap\BootstrapAbstract.php(622): Zend_Appli cation_Bootstrap_BootstrapAbstract-&gt;_executeResource('doctrine') #3 D:\ResourceLibrary\Frameworks\ZendFramework\library\Zend\Application\Bootstrap\BootstrapAbstract.php(579): Zend_Appli cation_Bootstrap_BootstrapAbstract-&gt;_bootstrap('doctrine') #4 D:\Projects\ZF\doctrine\application\scripts\doctrine.php(25): Zend_Application_Bootstrap_BootstrapAbstract-&gt;bootstrap ('doctrine') #5 D:\ResourceLibrary\Frameworks\ZendFramework\library\Zend\Loader.php(136): include('D:\Projects\ZF in D:\Projects\ZF\d octrine\application\Bootstrap.php on line 0 </code></pre> <p>.</p> <h1>UPDATE 1</h1> <p>.</p> <pre><code>protected function _initDoctrine() { $this-&gt;getApplication()-&gt;getAutoloader() -&gt;pushAutoloader(array('Doctrine', 'autoload')); spl_autoload_register(array('Doctrine', 'modelsAutoload')); $manager = Doctrine_Manager::getInstance(); $manager-&gt;setAttribute(Doctrine::ATTR_AUTO_ACCESSOR_OVERRIDE, true); $manager-&gt;setAttribute(Doctrine::ATTR_MODEL_LOADING, Doctrine::MODEL_LOADING_CONSERVATIVE); $manager-&gt;setAttribute(Doctrine::ATTR_AUTOLOAD_TABLE_CLASSES, true); $doctrineConfig = $this-&gt;getOption("doctrine"); $conn = Doctrine_Manager::connection($doctrineConfig['dsn']); $conn-&gt;setAttribute(Doctrine::ATTR_USE_NATIVE_ENUM, true); return $conn; } </code></pre> <p>under sql_autoload_register() i guess. i dont really get what spl_autoload_register() also ... even in php reference</p> http://stackoverflow.com/questions/1880863/how-to-generate-doctrine-models-classes-that-extend-a-custom-record-class 0 How to generate Doctrine models/classes that extend a custom record class Shane O'Grady 2009-12-10T13:04:57Z 2009-12-10T20:25:09Z <p>When I use Doctrine to generate classes from Yaml/db each Base class (which includes the table definition) extends the Doctrine_Record class.</p> <p>Since my app uses a master and (multiple) slave db servers I need to be able to make the Base classes extend my custom record class to force writes to go to the master db server (as described <a href="http://www.doctrine-project.org/documentation/cookbook/1%5F1/en/master-and-slave-connections" rel="nofollow">here</a>). However if I change the base class manually I lose it again when I regenerate my classes from Yaml/db using Doctrine.</p> <p>I need to find a way of telling Doctrine to extend my own Base class, or find a different solution to a master/slave db setup using Doctrine.</p> <p>Example generated model: </p> <pre><code>abstract class My_Base_User extends Doctrine_Record { </code></pre> <p>However I need it to be automatically generated as:</p> <pre><code>abstract class My_Base_User extends My_Record { </code></pre> <p>I am using Doctrine 1.2.1 in a new Zend Framework 1.9.6 application if it makes any difference.</p> http://stackoverflow.com/questions/1632922/iterate-doctrine-collection-ordered-by-some-field 1 Iterate Doctrine Collection ordered by some field inakiabt 2009-10-27T18:54:20Z 2009-12-10T07:24:20Z <p>I need something like this:</p> <pre><code> $products = Products::getTable()-&gt;find(274); foreach ($products-&gt;Categories-&gt;orderBy('title') as $category) { echo "{$category-&gt;title}&lt;br /&gt;"; } </code></pre> <p>I know is it not possible, but... How can I do something like this without creating a Doctrine_Query?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1868560/many-to-many-relationship-in-doctrine 1 many-to-many relationship in doctrine rizidoro 2009-12-08T17:32:39Z 2009-12-09T17:26:25Z <p>I've got some tables on my system like these:</p> <pre><code>news --id --title --content video --id --title --url album --id --title </code></pre> <p>Now, I need to do a many-to-many relatioship with this tables, but in a flexible way. I created a table called 'links' with the below structure:</p> <pre><code>links --parent_entity (example: news) --parent_id (example: 5) --child_entity (exmaple: video) --child_id (example: 2) </code></pre> <p>How can I map this using Doctrine?</p> http://stackoverflow.com/questions/1869233/doctrine-subquery-in-from 1 Doctrine - subquery in from snapshot 2009-12-08T19:21:16Z 2009-12-09T15:46:00Z <p>I have query in mysql:</p> <pre><code>SELECT * FROM ( SELECT COUNT(*) AS count, t.name AS name FROM tag t INNER JOIN video_has_tag v USING (idTag) GROUP BY v.idTag ORDER BY count DESC LIMIT 10 ) as tags ORDER BY name </code></pre> <p>and I want to write this in doctrine. How I can do that? I wrote:</p> <pre><code>Doctrine_Query::create() -&gt;select('COUNT(t.idtag) as count, t.name') -&gt;from('Tag t') -&gt;innerJoin('t.VideoHasTag v') -&gt;groupBy('v.idTag') -&gt;orderBy('count DESC, t.name') -&gt;limit(30) -&gt;execute(); </code></pre> <p>but I can't put it in "from" to sort by name.</p> http://stackoverflow.com/questions/1871344/efficiency-of-manual-record-hydration-doctrine-mysql 0 Efficiency of Manual Record Hydration (Doctrine / MySQL) jeremy 2009-12-09T03:01:34Z 2009-12-09T07:52:16Z <p>I'm interested in knowing whether it's more efficient to manually hydrate records when I have already retrieved a record or to have Doctrine hydrate the records.</p> <p>Here's the simplified scenario:</p> <p>I have two tables in my database: a User table and a PhoneNumber table. User has a one-to-many relation with PhoneNumber. I have already retrieved an instance of the User object and I want to retrieve all the phone numbers that belong to that user. Which method is better? If it makes a difference whether I'm using HYDRATE_RECORD or HYDRATE_ARRAY, please specify.</p> <p><strong>Method 1 - Left Join</strong></p> <p>Query all PhoneNumbers belonging to a User, left joining on User. Something like:</p> <pre><code>Doctrine_Query::create() -&gt;from('PhoneNumber pn') -&gt;leftJoin('pn.User u') -&gt;where('pn.user_id = ?', $user['id']) -&gt;execute(); </code></pre> <p><strong>Method 2 - Manual Hydrate</strong></p> <p>Query all PhoneNumbers belong to a user, than manually hydrate them with a User object/array I already have:</p> <pre><code>$phoneNumbers = Doctrine_Query::create() -&gt;from('PhoneNumber pn') -&gt;where('pn.user_id = ?', $user['id') -&gt;execute(); foreach($phoneNumbers as $phoneNumber) { $phoneNumber['User'] = $user; } </code></pre> <p>Please note: I am WELL AWARE of Doctrine's magic methods and know that in this instance I am capable of merely doing $user->PhoneNumbers. This is a simplified version of a more complicated scenario.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1513384/cumulative-dql-with-doctrine 1 Cumulative DQL with Doctrine phpworm 2009-10-03T09:59:45Z 2009-12-09T05:14:30Z <p>Hello</p> <p>Im having a hard time working out a proper DQL to generate cumulative sum. I can do it in plain SQL but when it comes to DQL i cant get hold of it.</p> <p>Here is how it looks in SQL:</p> <p><code></p> <pre><code> SELECT s.name, p.date_short, p.nettobuy, (select sum(pp.nettobuy) as sum from price pp where pp.stock_id = p.stock_id and p.broker_id = pp.broker_id and pp.date_short &lt;= p.date_short) as cumulative_sum FROM price p left join stock s on p.stock_id = s.id group by p.stock_id, p.date_short order by p.stock_id, p.date_short </code></pre> <p></code></p> <p>Thanks</p> http://stackoverflow.com/questions/1269850/zend-framework-1-9-and-doctrine-integration 1 Zend Framework 1.9 and Doctrine Integration Jace 2009-08-13T03:18:34Z 2009-12-09T00:24:53Z <p>I'm trying to setup Zend Framework and Doctrine.</p> <p>There is this previous discussion with ZF 1.8</p> <ul> <li><a href="http://stackoverflow.com/questions/973259/integrate-doctrine-with-zend-framework-1-8-app">http://stackoverflow.com/questions/973259/integrate-doctrine-with-zend-framework-1-8-app</a></li> </ul> <p>That discussion doesn't take into account the AutoLoader / Bootstrap System.</p> <p>If I generate an application skeleton with ./zh.sh how would I go about integrating Doctrine.</p> http://stackoverflow.com/questions/1866313/standard-idiom-for-adding-new-models-to-an-app-built-on-symfony-doctrine 0 Standard idiom for adding new models to an app built on Symfony + Doctrine Swanand 2009-12-08T11:14:01Z 2009-12-08T23:58:46Z <p>What is the a standard way of adding new model to my app built on Symfony + Doctrine while maintaining all previous models and their meta-data (like relationships).</p> <p>What am I really looking for: A command / procedure that will be equivalent of <code>./script/generate model FooModel</code> in <code>Ruby on Rails</code> (which does not have any sort of reset db / reset models while generating)</p> <p>If these two are different things, and I am chasing the wrong ghost (I would like to think I am not), please let me know.</p> <p>EDIT: Updated the question.</p> http://stackoverflow.com/questions/1855925/extra-changecolumns-in-doctrine-generate-migrations-diff 0 Extra changeColumns in Doctrine generate-migrations-diff Josh Nankin 2009-12-06T17:19:48Z 2009-12-08T05:57:31Z <p>I'm generating migrations between different yaml schema files: i.e. running:</p> <p>symfony doctrine:generate-migrations-diff</p> <p>And the resulting migration file has a whole slew of changeColumn calls that weren't added in the last schema file change.</p> <p>For example, if you run generate-migrations-diff without changing your schema file whatsoever, you should get an empty up() function. However, the function that results for me has a changeColumn call for virtually every table in my database.</p> <p>Am i doing something wrong or is this a bug?</p> http://stackoverflow.com/questions/1850215/getting-doctrine-to-use-mysql-force-index 0 Getting Doctrine to use MySQL "FORCE INDEX" Wickethewok 2009-12-04T22:57:49Z 2009-12-07T15:32:06Z <p>I have a query in Doctrine's DQL that needs to be able to use MySQL's "FORCE INDEX" functionality in order to massively reduce the query time. Below is what the query basically looks like in plain SQL:</p> <pre><code>SELECT id FROM items FORCE INDEX (best_selling_idx) WHERE price = ... (etc) LIMIT 200; </code></pre> <p>I assume I have to extend some Doctrine component to be able to do this with DQL (or is there a way to inject arbitrary SQL into one of Doctrin's queries?). Anyone have any ideas?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1471986/how-do-i-detach-a-behavior-in-symfony 0 How do i detach a behavior in Symfony? Yash 2009-09-24T14:15:39Z 2009-12-07T12:27:17Z <p>Hi,</p> <p>i have softdelete behavior attached to all my models. is there a way i can hard delete a particular record?</p> <p>in cakephp i remember detaching the behavior... deleting the record and then re attaching the behavior.</p> <p>is it something similar in symfony/doctrine ? if so then how do i detach a behavior?</p> <p>Cheers</p> http://stackoverflow.com/questions/1856260/why-cant-i-create-a-doctrine-model-named-album 0 Why can't I create a Doctrine model named 'Album' Sander Versluys 2009-12-06T19:08:00Z 2009-12-06T22:23:14Z <p>I'm using Doctrine as ORM in my project but ran against a strange error:</p> <p>Using following YAML:</p> <pre><code>Album: tableName: dpp_album actAs: [Timestampable] columns: name: string(255) description: string(255) online: boolean </code></pre> <p>I then generate my models but upon refreshing my page and autoloading the models, PHP serves this error:</p> <blockquote> <p>Fatal error: Class 'BaseAlbum' not found in E:\sites\dpp\system\application\models\Album.php on line 13</p> </blockquote> <p>Strangely enough all my other models are just fine and the Base Classes are found in those cases.</p> <p>When changing the name 'Album' to something like 'Set' it just works! Ain't that strange?!</p> <p>So it seems the using 'Album' somehow conflicts, although the error message suggests something else. Change to the plural Albums also doesn't work, anything else is just fine!</p> <p>Any suggestions?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1783933/doctrine-schema-yml-generator 1 Doctrine schema.yml generator Rick Ball 2009-11-23T15:39:13Z 2009-12-03T16:45:54Z <p>Hi,</p> <p>I am pretty new to doctrine. I made two small projects with doctrine for my own but now I am about to create big project for my client. The project will have more than 50 tables. Is there any way of generating schema.yml? I tried DB Designer and converted it to schema.yml, but I still had to check and rewrite the definitions by hand. Thanks</p> http://stackoverflow.com/questions/1835676/switch-symfony-1-4-from-doctrene-to-propel 0 Switch symfony 1.4 from doctrene to propel Stepashka 2009-12-02T20:44:35Z 2009-12-03T13:59:12Z <p>How can I properly switch the newly installed Symfony 1.4 framework from Doctrine (that it is configured for by default) to Propel?</p> http://stackoverflow.com/questions/1821641/doctrine-orm-implement-self-relations 0 Doctrine ORM - Implement self-relations ruigoncalves 2009-11-30T18:47:24Z 2009-12-03T02:52:42Z <p>Hi everyone!</p> <p>Can anyone give me an example of how to implement a class self-relation?</p> <p>Thanks in advance, Best regards!</p> http://stackoverflow.com/questions/1824788/symfony-how-to-use-widgets-with-i18n-forms-in-backend-doctrine 1 Symfony : How to use widgets with i18n forms in backend (doctrine) Julien 2009-12-01T08:35:37Z 2009-12-02T08:54:39Z <p>Hi everybody.</p> <p>I can not manage to have both i18n and tinyMCE widgets on internationalised fields. If i put both, i will have internationalised fields for all my objects' fields, but no tinyMCE for them. I will have as much tinyMCE fields as i declared, but thew will not correspond to any language, they will be at the beginning or at the end. It worked perfectly before i internationalized the objects</p> <p>Here is an example of code :</p> <p>// config/doctrine/schema.yml</p> <pre><code>MyObject: actAs: I18n: fields: [title, subtitle, intro, text] columns: title: {type: string(500)} subtitle: {type: string(500)} intro: {type: string(4000)} text: {type: string(16000)} </code></pre> <p>// lib/form/doctrine/MyObject.class.php</p> <pre><code>public function configure() { $this-&gt;embedI18n(array('en', 'fr', 'es')); $this-&gt;widgetSchema-&gt;setLabel('fr', 'Français'); $this-&gt;widgetSchema-&gt;setLabel('en', 'Anglais'); $this-&gt;widgetSchema-&gt;setLabel('es', 'Español'); $this-&gt;widgetSchema['intro'] = new sfWidgetFormTextareaTinyMCE( array( 'width'=&gt;600, 'height'=&gt;100, 'config'=&gt;'theme_advanced_disable: "anchor,image,cleanup,help"', 'theme' =&gt; sfConfig::get('app_tinymce_theme','simple'), ), array( 'class' =&gt; 'tiny_mce' ) ); $this-&gt;widgetSchema['text'] = new sfWidgetFormTextareaTinyMCE( array( 'width'=&gt;600, 'height'=&gt;100, 'config'=&gt;'theme_advanced_disable: "anchor,image,cleanup,help"', 'theme' =&gt; sfConfig::get('app_tinymce_theme','simple'), ), array( 'class' =&gt; 'tiny_mce' ) ); $js_path = sfConfig::get('sf_rich_text_js_dir') ? '/'.sfConfig::get('sf_rich_text_js_dir').'/tiny_mce.js' : '/sf/tinymce/js/tiny_mce.js'; sfContext::getInstance()-&gt;getResponse()-&gt;addJavascript($js_path); } </code></pre> <p>So i guess when i use $this->widgetSchema['intro'], the "intro" name does not correspond to all the i18n "intro" fields. I tried both 'en_intro' and 'intro_en', but it doesn't do any magic. So maybe you could help me ?</p> http://stackoverflow.com/questions/1488944/how-to-keep-two-development-databases-in-sync-with-doctrine 1 How to keep two development databases in sync with Doctrine? Silvan Mühlemannn 2009-09-28T19:35:25Z 2009-12-02T06:31:13Z <p>(Make this CW if needed) We are two developers working on a web application based (PHP5, ZF, Doctrine, MySQL5). We are working each with a local webserver and a local database. The database schema is defined in a YAML file.</p> <p>What's the best way to keep our database schemas in sync?</p> <p>Here's how we do it: Whenever developer "A" makes a change, he generates a migration class. Then he commits the migration file developer "B" executes the migration class.</p> <p>But creating a migration class on every db change is a rather tedious process. </p> <p>Do you have a better solution?</p> http://stackoverflow.com/questions/1827764/doctrine-orm-joins 0 Doctrine ORM JOINS PHP thinker 2009-12-01T17:43:01Z 2009-12-02T06:22:39Z <p>I have a few simple classes, all extending Doctrine_Record.</p> <p>Now I want to make a slightly more complex query with Inner Join, not just table data extracting.</p> <p>I am doing to use DQL, does this oblige me to manually define relation between 2 tables? Should I define this relation class or I better update schema.yml and somehow re-generate class code? </p> <p>No DQL joins are possible without such explicit relation preparations, right?</p> http://stackoverflow.com/questions/1828210/doctrine-schema-yml-error 0 Doctrine - schema.yml error ruigoncalves 2009-12-01T19:09:53Z 2009-12-01T19:57:30Z <p>Hi there!</p> <p>I have the following schema.yml file:</p> <pre><code>Page: actAs: I18n: fields: [name,html,urlShortDesc] columns: name: string gender: type: enum values: [html, photoGallery] default: html html: string urlShortDesc: string section_id: type: integer notnull: true relations: Section: foreignAlias: Pages SubPage: class: Page local: subpage foreign: id type: one </code></pre> <p>But, when I execute the <em>build-all-reload</em> command, the following error message is displayed:</p> <p>"SQLSTATE[42000]: Syntax error or access violation: 1072 Key column 'subpage' doesn't exist in table"</p> <p>I'm trying to implement a self-relation class. Can anyone give me some help?</p> <p>Thanks in advance, Best regards!</p> http://stackoverflow.com/questions/1826371/doctrine-load-module-exception 0 Doctrine Load Module Exception holydiver 2009-12-01T14:02:50Z 2009-12-01T14:38:27Z <p>Hello all,</p> <p>I'm new to doctrine. I created an bootstrap file like the following one:</p> <pre><code>require_once(dirname(__FILE__)."/../conf/general.php"); require_once(dirname(__FILE__).'/Doctrine/lib/Doctrine.php'); spl_autoload_register(array('Doctrine', 'autoload')); $manager = Doctrine_Manager::getInstance(); $manager-&gt;setAttribute(Doctrine::ATTR_VALIDATE, Doctrine::VALIDATE_ALL); $manager-&gt;setAttribute(Doctrine_Core::ATTR_AUTO_ACCESSOR_OVERRIDE, true); #for accessor overriding $manager-&gt;setAttribute(Doctrine_Core::ATTR_AUTOLOAD_TABLE_CLASSES, true); #in order to be able to use the XTable classes $manager-&gt;setAttribute(Doctrine_Core::ATTR_MODEL_LOADING, Doctrine_Core::MODEL_LOADING_CONSERVATIVE); #to conservatively load files $manager-&gt;setAttribute(Doctrine::ATTR_EXPORT, Doctrine::EXPORT_ALL); $dsn = "mysql:dbname=".DBNAME.";host=".DBHOST; $dbh = new PDO( $dsn, DBUSERNAME, DBPASS ); $conn = Doctrine_Manager::connection( $dbh ); Doctrine_Core::loadModels('doc_models'); #In order to be able to work with models </code></pre> <pre>php bootstrap.php</pre> command works just as expected. But I have a file X.php under directory Y and i require bootstrap.php file in X.php ;but when i ran the X.php in the directory Y like <pre> php X.php</pre> I got the following exception: <pre> Doctrine_Exception: You must pass a valid path to a directory containing Doctrine models in /path_to_directory_of_bootstrap_file/Doctrine/lib/Doctrine/Core.php on line 635 </pre> <p>Now, how can i fix this issue?</p> <p>BTW, when i put X.php and bootstrap.php in the same directory it works as expected. I also tried to require with absolute paths but this didn't solve my problem. I'm testing on Ubuntu 9.10 and installed doctrine from pear. Doctrine version is 1.2.0.</p> http://stackoverflow.com/questions/1817131/doctrine-quoting-apostrophes 0 Doctrine quoting apostrophes Byron Whitlock 2009-11-29T23:25:48Z 2009-11-30T10:13:56Z <p>I am using Doctrine ORM for php and Zend MVC. I have a mysql database. When I insert into the database it is escaping quotes. In other-words when I enter </p> <pre><code>&lt;input name="customer_name" value="Test'ed user"&gt; ... </code></pre> <p>into my form, and assign to a doctrine object and save.</p> <p>When I look at the database through the mysql command line I get </p> <pre><code>Test\'ed user </code></pre> <p>Is there a way to disable this or do I have to call <code>stripslashes()</code> on each variable?</p> http://stackoverflow.com/questions/1816407/php-doctrine-validation 0 PHP Doctrine Validation Dan 2009-11-29T18:57:22Z 2009-11-29T19:48:54Z <p>Hi, I'm using doctrine and trying to validate some models.</p> <p>I have the following in my YAML schema:</p> <pre><code>User: package: User columns: username: type: string notnull: true notblank: true minlength: 4 password: type: string notnull: true </code></pre> <p>If I create a new user, it always validates, regardless of what values I give it.</p> <p>eg:</p> <pre><code>$testuser = new User(); $testuser-&gt;username = ' '; if ( ! $testuser-&gt;isValid()) { echo 'User is invalid!'; } </code></pre> <p>EDIT: The above is just an example. It still validates even if values specified as NOT NULL in the schema are omitted.</p> <p>The invalid method is never produced. Does anyone know what might be causing this? Any advice appreciated. Thanks.</p> http://stackoverflow.com/questions/1807149/what-does-mutators-and-accessors-do-in-doctrine 0 What does mutators and accessors do in Doctrine? shin 2009-11-27T06:47:46Z 2009-11-27T07:47:24Z <p><a href="http://www.doctrine-project.org/documentation/manual/1%5F1/en/introduction-to-models#custom-accessors/mutators" rel="nofollow">In this document</a>, it explains how to use mutators and accessors in Doctrine, but does not explain what they are.</p> <p>Could anyone explain what mutators and accessors do and what they are?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1803827/how-does-one-call-the-down-method-for-a-doctrine-migration-in-symfony-1-2 0 How does one call the down method for a Doctrine migration in Symfony 1.2? Swanand 2009-11-26T14:00:51Z 2009-11-26T15:00:32Z <p>I am using Symfony 1.2 with the sfDoctrinePlugin.</p> <p>I couldn't find any command to call the <code>down</code> method on a migration, neither the documentation suggests any related arguments to the existing <code>doctrine migrate</code> command.<br> What would be a way to rollback the migration I just ran successfully? Creating a new migration to undo is an option, but that is almost blasphemous and plainly stupid.</p> http://stackoverflow.com/questions/1803326/php-doctrine-relationship-with-namespaces 0 PHP Doctrine relationship with namespaces Ota 2009-11-26T12:09:53Z 2009-11-26T12:09:53Z <p>Hello, i just started using PHP namespaces. I have two models classes in separate files</p> <p>In both files first i declare namespace </p> <p>namespace eu\ed\sixImport\importViewer\models;</p> <p><strong>first class:</strong></p> <p>class Log extends \Doctrine_Record</p> <pre><code> $this-&gt;hasMany('eu\ed\sixImport\importViewer\models\DataSource as DataSource', array( 'local' =&gt; 'id', 'foreign' =&gt; 'logId'));//setup relationship in setUp method </code></pre> <p><strong>second class:</strong></p> <p>class DataSource extends \Doctrine_Record</p> <pre><code> $this-&gt;hasOne('eu\ed\sixImport\importViewer\models\Log as Log', array( 'local' =&gt; 'logId', 'foreign' =&gt; 'id'));//setup relationship in setUp method </code></pre> <p>Everything works fine untill i make something like this</p> <pre><code> $query = \Doctrine_Query::create() -&gt;select('log.*') -&gt;from('eu\ed\sixImport\importViewer\models\Log log') -&gt;leftJoin("log.DataSource") -&gt;orderBy("log.id DESC"); $requiredPage = (($startingRow - ($startingRow%$rowsRequired))/$rowsRequired) + 1; $pager = new \Doctrine_Pager($query, $requiredPage, $rowsRequired); $res = $pager-&gt;execute(); $this-&gt;logsPageCount = $pager-&gt;getNumResults(); print_r($res[0]["DataSource"]-&gt;toArray());//it fails on access to relationship </code></pre> <p>Than Doctrine throw Exception Uncaught exception 'Doctrine_Exception' with message 'Couldn't find class eu\ed' in C:\wamp\www\importViewer\resources\doctrine\Doctrine-1.1.5\lib\Doctrine\Table.php:293...</p> <p>From Exception, you can see, it looks for class 'eu\ed'. Backslash[s] cut the rest of the class name, and than class is not obviously found. Can you give me some suggestion, how to solve this problem?</p> <p>Thanks</p> http://stackoverflow.com/questions/1801227/tracking-the-views-of-a-given-row 0 Tracking the views of a given row phidah 2009-11-26T02:21:34Z 2009-11-26T07:49:30Z <p>Hi there,</p> <p>I have a site where the users can view quite a large number of posts. Every time this is done I run a query similar to <code>UPDATE table SET views=views+1 WHERE id = ?</code>. However, there are a number of disadvantages to this approach:</p> <ul> <li>There is no way of tracking when the pageviews occur - they are simply incremented.</li> <li>Updating the table that often will, as far as I understand it, clear the MySQL cache of the row, thus making the next SELECT of that row slower.</li> </ul> <p>Therefore I consider employing an approach where I create a table, say:<br> <code>object_views { object_id, year, month, day, views }</code>, so that each object has one row pr. day in this table. I would then periodically update the views column in the <code>objects</code> table so that I wouldn't have to do expensive joins all the time.</p> <p>This is the simplest solution I can think of, and it seems that it is also the one with the least performance impact. Do you agree?</p> <p>(The site is build on PHP 5.2, symfony 1.4 and Doctrine 1.2 in case you wonder)</p> <p><strong>Edit:</strong><br> The purpose is <strong>not</strong> web analytics - I know how to do that, and that is already in place. There are two purposes:</p> <ul> <li>Allow the user to see how many times a given object has been shown, for example today or yesterday.</li> <li>Allow the moderators of the site to see <em>simple</em> view statistics without going into Google Analytics, Omniture or whatever solution. Furthermore, the results in the backend must be realtime, a feature wich GA cannot offer at this time. I do not wish to use the Analytics API to retrieve the usage data (not realtime, GA requires javascript).</li> </ul> http://stackoverflow.com/questions/1791924/whats-the-best-way-to-make-small-schema-updates-with-doctrine-symfony 0 What's the best way to make small schema updates with Doctrine/Symfony? Josh Nankin 2009-11-24T18:15:43Z 2009-11-24T18:29:13Z <p>What's the best way to make small schema updates to your symfony/doctrine application?</p> <p>My issue is, I'm working on a new side-project and occasionally find myself adding a new column here, a new column there as i find the need. However, my DB already has existing data and I dont want to run a complete rebuild and drop my DB with the changes each time.</p> <p>I also dont want to write fixtures. They're annoying, and it's much easier to use my application to insert data and keep it around while developing. I also dont want to write a migration to add one or two columns, especially when I'm doing this a lot.</p> <p>Are my only choices to:</p> <ol> <li>make changes to the schema file and wipe the db after every schema change -or-</li> <li>update the schema file and manually run alter statements on my db</li> </ol> <p>Ultimately, what I'd like to do is either make changes to my db, and have symfony figure out what the schema file should look like, or make changes to the schema file and have symfony figure out what new changes to make to the existing database.</p> <p>Please help!</p> <p>Thanks. First time using SO, can't wait to see if i get a response!</p>