RE: Can't locate DBI.pm

2005-04-28 Thread Chekuri, Lalitha
If I say make cc=gcc it says 'No arguments to build' -Original Message- From: Michael Nhan [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 4:11 PM To: Chekuri, Lalitha Cc: Reidy, Ron; dbi-users@perl.org Subject: RE: Can't locate DBI.pm Hi, Can you compile by setting th

RE: Can't locate DBI.pm

2005-04-28 Thread Chekuri, Lalitha
It is fresh install: magma:oracle $uname -a SunOS magma 5.9 Generic_117171-12 sun4u sparc SUNW,Ultra-60 My perl -v magma:oracle $perl -v This is perl, v5.6.1 built for sun4-solaris-64int (with 48 registered patches, see perl -V for more detail) For CC: magma:oracle $what cc can't open cc (26) m

Re: DBD::mysql 2.9007 and DBD::mysql 2.9015_3 (beta) released

2005-04-28 Thread Steve Hay
Hi Patrick, Patrick Galbraith wrote: >Dear DBI/DBD::mysql developers, > >DBD::mysql 2.9007 and 2.9015_3 are now available via CPAN! > Thanks for the new releases! Please find attached two patches, one for each release. patch-stable.txt patches 2.9007 to remove all reference to mysql_config on

DBD::Oracle and XMLType

2005-04-28 Thread Job Miller
Is there any way to bind a CLOB into the XMLType.createxml() call? The createXML has 4 different signatures, one is varchar2, one is clob. If the data is larger than 32k, I need to bind in a clob, but I am not really sure how to do it. I read the DBD::Oracle docs and looked at the examples

Re: DBD::Oracle and XMLType

2005-04-28 Thread Job Miller
After a little searching of archives, I found the same exact problem and the same self-proposed workaround almost a year ago. Is there a better way without creating another column in a temp table? I couldn't find a follow-up to this post. Job To: dbi-users-help[at]perl.org, dbi-users[at]per

Re: Can't locate DBI.pm

2005-04-28 Thread Michael A Chase
On 04/27/2005 01:22 PM, Chekuri, Lalitha said: It is fresh install: magma:oracle $uname -a SunOS magma 5.9 Generic_117171-12 sun4u sparc SUNW,Ultra-60 My perl -v magma:oracle $perl -v This is perl, v5.6.1 built for sun4-solaris-64int (with 48 registered patches, see perl -V for more detail) For C

Re: DBD::Oracle and XMLType

2005-04-28 Thread Michael A Chase
On 04/28/2005 05:32 AM, Job Miller said: After a little searching of archives, I found the same exact problem and the same self-proposed workaround almost a year ago. Is there a better way without creating another column in a temp table? I couldn't find a follow-up to this post. There is an ORA_CL

Re: Can't locate DBI.pm

2005-04-28 Thread James D. White
It looks like you have a fresh install of Solaris 9, not a fresh install of perl. "v5.6.1 built for sun4-solaris-64int" is the version that comes with Solaris 9, which was built by Sun using a Sun C compiler and installed, I assume, as /usr/bin/perl. You have two options. 1) Spend money. Buy and

RE: Can't locate DBI.pm

2005-04-28 Thread Chekuri, Lalitha
My problem is: To install perl it is asking cc I downloaded gcc from freeware, To install gcc: if I have cc in path it is giving " /usr/ucb/cc: language optional software package not installed" error. If I don't have cc in the path it is saying cc not found. I am not sure what is wrong.

RE: Can't locate DBI.pm

2005-04-28 Thread Reidy, Ron
This is in the Oracle installation docs. If you have used 3.x successfully, so be it. I am a DBA and I follow the guides. - Ron Reidy Lead DBA Array BioPharma, Inc. -Original Message- From: Michael A Chase [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 6:54

RE: Can't locate DBI.pm

2005-04-28 Thread Michael Nhan
Lalitha, My problem is: To install perl it is asking cc The perl source requires a compiler not necessarily cc. Install gcc. Put the path to gcc before the path to /usr/ucb/cc. When you run configure within in the perl source, it should detect you have gcc and use it. I downloaded gcc from fr

fetchrow_hashref stops returning data

2005-04-28 Thread April Blumenstiel
Hello, I have a program in perl running on Linux, accessing a SQL Server database via ODBC. It runs fine. But yesterday, the process had been running for six days when suddenly, one specific select statement/fetchrow_hashref stopped returning any data from the database. There were other very si

Re: DBD::mysql 2.9007 and DBD::mysql 2.9015_3 (beta) released

2005-04-28 Thread Patrick Galbraith
Steve, Thank you so much for these patches! I love open source! I'm sorry about forgetting about the removal of strcasencmp - this was something I had planned to do, and even Monty said to change it. About 'my_global.h' and longlong - I wanted to use this, especially for the 'rows' issue, but ha

Re: DBD::mysql 2.9007 and DBD::mysql 2.9015_3 (beta) released

2005-04-28 Thread Steve Hay
Patrick Galbraith wrote: >Steve, > >Thank you so much for these patches! I love open source! > >I'm sorry about forgetting about the removal of strcasencmp - this was >something I had planned to do, and even Monty said to change it. About >'my_global.h' and longlong - I wanted to use this, espec

Re: DBD::mysql 2.9007 and DBD::mysql 2.9015_3 (beta) released

2005-04-28 Thread Patrick Galbraith
On Apr 28, 2005, at 9:19 AM, Steve Hay wrote: Patrick Galbraith wrote: Steve, C:\perl5\lib\CORE\win32iop.h(243) : see previous definition of 'tell' Clearly these need ironing out, but they're better than errors about Win32 missing "long long". Mine were actually errors - I'll add the pat

Newbie problem connecting to MS SQL Server

2005-04-28 Thread Mark Vaughan
I am trying to connect to an MS SQL Server database, running on a Win2k server, from a Solaris 5.8 system using Perl 5.6.1. I have installed DBI and Bundle::DBD, but I can't get a connection. I have read the READMEs, but am still unable to get the connection made. I get the following message

Re: Can't locate DBI.pm

2005-04-28 Thread Michael A Chase
On 04/28/2005 06:54 AM, Chekuri, Lalitha said: My problem is: To install perl it is asking cc I downloaded gcc from freeware, To install gcc: if I have cc in path it is giving " /usr/ucb/cc: language optional software package not installed" error. If I don't have cc in the path it is saying cc no