Stephane Perennes wrote:
Well i want use more object oriented perl.
Please ask about this at www.perlmonks.org or comp.lang.perl.misc. This mailing list is for DBI only.
&$t->method does not work
Assuming that $t is a blessed object that has a method called "foo" that takes two arguments, you do it like this (no &):
$t->foo( $arg1, $arg2 );
But again, please ask someplace more appropriate for follow up.
-- Jeff
