Dilgeet Badial <[EMAIL PROTECTED]> wrote:

> Here is the error message I am getting:

> DBI->disconnect is not a DBI method.

Well, it isn't a DBI class method--it's a database handle method. If
your code looks like DBI->disconnect; that's the problem. You want
something like $dbh->disconnect; instead, or better yet, something
like my $return_code = $dbh->disconnect;

Regards,

        John A

Reply via email to