WebTigers: Working with Doctrine ORM, Part 1 |
[eluser]webtigers[/eluser]
Having just begun working with Doctrine within CI, I thought I'd post some of my code and limited experience to date. Doctrine, in a word, ROCKS!, but like any other piece of complex software, this ORM has its idiosyncrasies. Hopefully, my experiences will help you avoid some of the gotchas I ran into. INSTALLING DOCTRINE AS A CI PLUG-IN There are quite a few helpful blogs discussing how to use Doctrine with CI. My preference is to use Doctrine as a CI Plug-in, which seems to make the most sense within the MVC framework. The Doctrine site discusses integrating Doctrine with CI but has you hacking the CI system code to do it. DON'T DO THIS! Doctrine works just fine as a CI plug-in without your having to hack it into the system code. First, download the Doctrine source files from the Doctrine website at http://www.doctrine-project.org/projects/orm/download. (Don't bother with their SVN if you're not using SVN, most of us are using GitHub or BitBucket anyway these days.) Unpack the Doctrine-1.2.x folder into your CI /application/plugins folder. Rename it simply "Doctrine". (This allows you to upgrade the plug-in later without changing path code deeper within your application.) You should now have within your plugins folder a /Doctrine/lib/Doctrine/ ... directory tree that contains all of the Doctrine files. Now we're going to create the Doctrine CI plug-in file which will act as our Doctrine "bootstrap" file and initialization code. This file lives in the root of the /plugins directory and will be named appropriately, doctrine_pi.php To give credit where credit is due, some of this I borrowed from Burak at PHP and Stuff Code: <?php Finally, within in your concrete controller you'll need to add this code: Code: class Some_Controller extends Controller Now Doctrine is fully available for us to use within our models. Very cool. In my next post, I'll show how to create some basic tables using Doctine's YAML config code, use UUID's and build a related table -- and ALL without writing a single line of SQL! Good stuff ... stay tuned.
[eluser]Unknown[/eluser]
Didn't work for me Fatal error: Class 'User' not found in E:\server\xampp\htdocs\CI\system\application\controllers\hello.php Could you please let me know what should it be for doctrine 1.2.3 Here User was the class..
[eluser]developer10[/eluser]
When using Doctrine as CI plugin, do we really have to write the DQL queries directly in our controllers or there is a way for writing them in doctrine models and them call those models from controllers (just like we would normally do if not using Doctrine)?
[eluser]webtigers[/eluser]
[quote author="cold_fusion" date="1288399879"]When using Doctrine as CI plugin, do we really have to write the DQL queries directly in our controllers or there is a way for writing them in doctrine models and them call those models from controllers (just like we would normally do if not using Doctrine)?[/quote] Simple object method calls are fine. But you really should not have complex DQL queries in your controllers. Doing so breaks the MVC separation rules. Place complex queries within the model as a function and then call that function with whatever appropriate params from the controller once the object is instantiated. Much cleaner this way also. ![]()
[eluser]webtigers[/eluser]
[quote author="ajax_bnr" date="1285618560"]Didn't work for me Fatal error: Class 'User' not found in E:\server\xampp\htdocs\CI\system\application\controllers\hello.php Could you please let me know what should it be for doctrine 1.2.3 Here User was the class..[/quote] You'll just need to debug your code. Doctrine works very well and I've been using it successfully to create tables, populate and pull data. It's quite cool.
[eluser]developer10[/eluser]
[quote author="WebTigers" date="1288486255"][quote author="cold_fusion" date="1288399879"]When using Doctrine as CI plugin, do we really have to write the DQL queries directly in our controllers or there is a way for writing them in doctrine models and them call those models from controllers (just like we would normally do if not using Doctrine)?[/quote] Simple object method calls are fine. But you really should not have complex DQL queries in your controllers. Doing so breaks the MVC separation rules. Place complex queries within the model as a function and then call that function with whatever appropriate params from the controller once the object is instantiated. Much cleaner this way also. ![]() is this a proper way to call a method from Doctrine Model: Code: $var = Doctrine::getTable('Someclass'); I have something like this but it doesnt work!
[eluser]webtigers[/eluser]
[quote author="cold_fusion" date="1288489839"][quote author="WebTigers" date="1288486255"][quote author="cold_fusion" date="1288399879"]When using Doctrine as CI plugin, do we really have to write the DQL queries directly in our controllers or there is a way for writing them in doctrine models and them call those models from controllers (just like we would normally do if not using Doctrine)?[/quote] Simple object method calls are fine. But you really should not have complex DQL queries in your controllers. Doing so breaks the MVC separation rules. Place complex queries within the model as a function and then call that function with whatever appropriate params from the controller once the object is instantiated. Much cleaner this way also. ![]() is this a proper way to call a method from Doctrine Model: Code: $var = Doctrine::getTable('Someclass'); I have something like this but it doesnt work![/quote] Check out http://www.doctrine-project.org/document...-to-models and http://www.doctrine-project.org/projects...-models/en |
Welcome Guest, Not a member yet? Register Sign In |