| Issue 8: | insert() should handle objects | |
| 1 person starred this issue and may be notified of changes. | Back to list |
as well as:
$dbrh->foo->insert( abc => 1, bar_id => $bar_id );
or
$dbrh->foo->insert( abc => 1, bar_id => $bar->bar_id );
should be able to:
$dbrh->foo->insert( abc => 1, bar => $bar );
or:
$dbrh->foo->insert( abc=> 1, bar => $bar_id ); # maybe
|