DBD::Oracle problem

DBD::Oracle problem

am 06.01.2006 05:37:14 von Gary.Shaw

------_=_NextPart_001_01C6127A.DDBA1BD7
Content-Type: text/plain;
charset="US-ASCII"
Content-Transfer-Encoding: quoted-printable
X-NAIMIME-Disclaimer: 1
X-NAIMIME-Modified: 1

Hi there,
=20
Has anyone seen this message before?
=20
install_driver(Oracle) failed: DBD::Oracle object version 1.16 does not
match bootstrap parameter 1.06 at C:/Perl/lib/DynaLoader.pm line 253.
=20
If so do you know how to fix it? I am running windows 2000 with an
Oracle 9i client and ActivePerl 5.8.7.815.
=20
Regards,
=20
Gary Shaw


This e-mail and any attachments may contain confidential information that=
is intended solely for the use of the intended recipient and may be subj=
ect to copyright. If you receive this e-mail in error, please notify the =
sender immediately and delete the e-mail and its attachments from your sy=
stem. You must not disclose, copy or use any part of this e-mail if you a=
re not the intended recipient. Any opinion expressed in this e-mail and a=
ny attachments is not an opinion of RailCorp unless stated or apparent fr=
om its content. RailCorp is not responsible for any unauthorised alterati=
ons to this e-mail or any attachments. RailCorp will not incur any liabil=
ity resulting directly or indirectly as a result of the recipient accessi=
ng any of the attached files that may contain a virus.

------_=_NextPart_001_01C6127A.DDBA1BD7--

Re: DBD::Oracle problem

am 09.01.2006 16:50:21 von scoles

Didn't have this error myself but I found something similar
So you might want to try this

changed the line

$DBD::Oracle::VERSION = '1.16';

in Oracle.pm to

$DBD::Oracle::VERSION = '1.06';

Worth a try.

Cheers
""Shaw, Gary"" wrote in message
news:C397D760C4BE244787439EA8B04CD0411774CA@EXCHVS3.rail.nsw .gov.au...
Hi there,

Has anyone seen this message before?

install_driver(Oracle) failed: DBD::Oracle object version 1.16 does not
match bootstrap parameter 1.06 at C:/Perl/lib/DynaLoader.pm line 253.

If so do you know how to fix it? I am running windows 2000 with an
Oracle 9i client and ActivePerl 5.8.7.815.

Regards,

Gary Shaw


This e-mail and any attachments may contain confidential information that is
intended solely for the use of the intended recipient and may be subject to
copyright. If you receive this e-mail in error, please notify the sender
immediately and delete the e-mail and its attachments from your system. You
must not disclose, copy or use any part of this e-mail if you are not the
intended recipient. Any opinion expressed in this e-mail and any attachments
is not an opinion of RailCorp unless stated or apparent from its content.
RailCorp is not responsible for any unauthorised alterations to this e-mail
or any attachments. RailCorp will not incur any liability resulting directly
or indirectly as a result of the recipient accessing any of the attached
files that may contain a virus.

Re: DBD::Oracle problem

am 09.01.2006 22:08:42 von Tim.Bunce

On Mon, Jan 09, 2006 at 10:50:21AM -0500, John Scoles wrote:
> Didn't have this error myself but I found something similar
> So you might want to try this
>
> changed the line
> $DBD::Oracle::VERSION = '1.16';
> in Oracle.pm to
> $DBD::Oracle::VERSION = '1.06';

The error message is from a safety mechanism used by perl extensions.
They check that the version of the .pm file matches the version of the
shared object file. If there was a mismatch there would be a risk of
very obscure errors.

> ""Shaw, Gary"" wrote in message
> news:C397D760C4BE244787439EA8B04CD0411774CA@EXCHVS3.rail.nsw .gov.au...
> Hi there,
>
> Has anyone seen this message before?
>
> install_driver(Oracle) failed: DBD::Oracle object version 1.16 does not
> match bootstrap parameter 1.06 at C:/Perl/lib/DynaLoader.pm line 253.
>
> If so do you know how to fix it? I am running windows 2000 with an
> Oracle 9i client and ActivePerl 5.8.7.815.

That's saying that the Oracle.pm file is from 1.06 but the Oracle.dll
file is from 1.16. Generally it's caused by people trying to install
DBD::Oracle by hand or rearranging the lib directory tree, or altering
@INC in odd ways.

Try reinstalling using the documented procedures.

Tim.

> Regards,
>
> Gary Shaw
>
>
> This e-mail and any attachments may contain confidential information that is
> intended solely for the use of the intended recipient and may be subject to
> copyright. If you receive this e-mail in error, please notify the sender
> immediately and delete the e-mail and its attachments from your system. You
> must not disclose, copy or use any part of this e-mail if you are not the
> intended recipient. Any opinion expressed in this e-mail and any attachments
> is not an opinion of RailCorp unless stated or apparent from its content.
> RailCorp is not responsible for any unauthorised alterations to this e-mail
> or any attachments. RailCorp will not incur any liability resulting directly
> or indirectly as a result of the recipient accessing any of the attached
> files that may contain a virus.
>
>