There's more than one way to do things | |
PerlMonks |
Re: Re: Class::DBI Introby salvadors (Pilgrim) |
on Aug 01, 2003 at 07:54 UTC ( [id://279877]=note: print w/replies, xml ) | Need Help?? |
The delete method is rather inefficient. When called, Class::DBI will issue one DELETE statement for each row in your table. Yes. This is a deliberate design decision. The class in question may have explicit behaviours attached to the act of deleting (for example, you can set up triggers at the application level, rather than at the database.) The only way to cause these to be fired is to delete the objects one at a time. It's fairly trivial to set up your own method to delete from the database in one pass if you're comfortable doing so. Replacing all your SQL is not really Class::DBI's goal. Its job is to remove all the boring trivial repetitive SQL from your application, freeing you up to spend the time writing the more advanced stuff yourself that can't be easily abstracted away. Tony
In Section
Meditations
|
|