On Fri, Mar 07, 2003 at 09:24:51AM -0500, Cory Rau wrote:
> Hmmm...I did that. And now I get a different error:
>
> ------------
> Argument " " isn't numeric in repeat (x) at /Library/Perl/darwin/DBD/Proxy.pm line
> 63.
Change the
5 x ' '
to
' ' x 5
on the line with the error. It's fixed in the next release.
But that's just a minor issue shown up by the other error:
> DBD::Proxy::db STORE failed: Can't store CODE items at
> blib/lib/Storable.pm (autosplit into blib/lib/auto/Storable/_freeze.al)
> line 282, at /Library/Perl/RPC/PlServer/Comm.pm line 57
That's a more subtle issue. Try adding
dbi_connect_closure => 'local',
to %ATTR around line 222 of DBD/Proxy.pm
Tim.