On 10/19/06, Robert Hicks <[EMAIL PROTECTED]> wrote:
if ($new_task_name) {
$sth1->$self->dbh->prepare("
That should be:
if ($new_task_name) {
my $sth1 = $self->dbh->prepare( ...
As you have it, you're trying to use the strinigified version of $self as a
method to be called on $sth1, which is undefined.
Mike
