Re: Can't connect to Sybase Rep server

2006-02-28 Thread Matthew Persico
> Message d'origine > De: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Date: mar. 28.02.2006 07:54 > À: [EMAIL PROTECTED] > Cc: dbi-users@perl.org > Objet: Re: Can't connect to Sybase Rep server > > > > This is a known problem, and has been fixed in either 1.07 or > 1.07_01. Mu

Re: Connect to Oracle

2006-02-28 Thread Angela Chan
Thanks Ron. Angela ""Reidy, Ron"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] DUH! Never mind. As someone earlier posted on this thread, you will either need to: 1. Upgrade your Oracle client to a 9.2 or 10.1 or 10.2 version 2. Recompile your DBD::Oracle source with a MS C/C++

Re: Connect to Oracle

2006-02-28 Thread Angela Chan
Thanks Angela ""Andy Hassall"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > You should always include information about your platform, Perl version, > DBD::Oracle version and Oracle version, as it almost always helps with the > answer. Here are some guesses: > > You mention OCI.d

Re: Can't connect to Sybase Rep server

2006-02-28 Thread John Scoles
Hard to say for sure it could be one of a number of things. First what are the details on your system version of perl and DBI and DBD:Oracle here are a few things to check Some causes could be 1) You have not installed http://search.cpan.org/~mschwern/ExtUtils-MakeMaker-6.30/lib/ExtUtils/MakeMake

Re: Connect to Oracle

2006-02-28 Thread John Scoles
The latest version of DBD::Oracle 1.17 has a very comprehensive how-to in the win32 readme on installing and compiling DBD::oracle with C++ etc. I suggest to follow it will get you up and running though you have allot of downloading to do. Cheers ""Angela Chan"" <[EMAIL PROTECTED]> wrote in messa

RE : Can't connect to Sybase Rep server

2006-02-28 Thread Ammayappa SELVAKUMAR
Dear All, I was trying to install DBD-Oracle and am getting the following error while execuritng perl Makefile.PL Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: Can anyone help me... Regards Selva Message d'origine De: [EMAIL PROTECTED] [mai

Re: A common perl script for different database platforms

2006-02-28 Thread Jay Strauss
They mean, your script needs to look like: use DBI; my $dbh = DBI->connect("DBI:$DBType:$DbName", "$User", "$Pwd", {AutoCommit => 0, PrintError => 0, RaiseError => 0 }) or print"\nCouldn't connect to the database $DBType $DbName $User - " .DBI->errstr; J On 2/27/06, Hetal Soni <[EMAIL PROTECTED]