George Hartzell wrote: > For future reference, *is* there a way to specify arbitrary sql and > have it mapped into objects? > Not really, but you can hand literal SQL chunks via \$sql (scalarref) to pretty much any stage of the process. This is far preferable since it lets you retain at least some of the DBIC metadata.
Of course, nobody's stopping you calling Class->inflate_result(...) just like ResultSet itself does, but I haven't needed it yet (the worst I've done is __PACKAGE__->table(\"(SELECT ...)") to get a subselect into the FROM clause ...) _______________________________________________ List: http://lists.rawmode.org/cgi-bin/mailman/listinfo/dbix-class Wiki: http://dbix-class.shadowcatsystems.co.uk/ IRC: irc.perl.org#dbix-class SVN: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class/ Searchable Archive: http://www.mail-archive.com/[email protected]/
