in reply to Re: How do I build a SQL statements in Class::DBI programmatically
in thread How do I build a SQL statement in Class::DBI programmatically

Agreed - but in simpler terms: Class::DBI is meant to help you more easily do the easy things. It allows you to use objects to do simple interactions with your database. However, when you need more complex queries, it's better to just write them by hand.
  • Comment on Re^2: How do I build a SQL statements in Class::DBI programmatically

Replies are listed 'Best First'.
Re^3: How do I build a SQL statements in Class::DBI programmatically
by perrin (Chancellor) on Dec 08, 2004 at 23:22 UTC
    rb3 is already writing them by hand. The problem is the use of set_sql, which is not meant for this.