Re: [PHP] Accounting component in PHP

2008-12-09 Thread German Geek
You can do raw queries also... Just makes trivial queries and your model (if you believe in modelling) easier to manage. Believe me, I thought like you did before using symfony. On Tue, Dec 9, 2008 at 10:52 PM, altern <[EMAIL PROTECTED]> wrote: > > All my queries are complex. If I will use ORM, t

Re: [PHP] Accounting component in PHP

2008-12-09 Thread altern
All my queries are complex. If I will use ORM, then I still will need another wrapper to create, for example template criteria objects. I have application that is very similar to billing system. Such type of applications definitely have other business logic levels in addition to ORM queries, as yo

Re: [PHP] Accounting component in PHP

2008-12-08 Thread German Geek
You can do raw SQL queries with ORM as well, at least in symfony ;). An ORM makes other, rather trivial queries a whole lot easier though and a framework like symfony makes development of generic requirements a lot faster and cleaner. On Tue, Dec 9, 2008 at 4:07 AM, altern <[EMAIL PROTECTED]> wrot