Re: Problem on Solaris 8 64-bit.

2006-04-04 Thread Alan Burlison
that instead of the 64-bit one. -- Alan Burlison --

Re: Force perl Makefile.PL to use gcc instead of cc

2006-01-20 Thread Alan Burlison
to point to gcc, it uses cc specific compile options and fails anyway. Any ideas? Yes, install the perlgcc module from CPAN, then: perlgcc perl Makefile.PL; make install. -- Alan Burlison --

Re: Introduction

2005-11-11 Thread Alan Burlison
. -- Alan Burlison -- ICMakefile.pl.gz Description: GNU Zip compressed data

Replacement Makefile.PL for DBD::Oracle and Oracle Instant Client

2005-11-07 Thread Alan Burlison
/include/xa.h ./sdk/include/nzt.h ./sdk/include/nzerror.h ./sdk/demo/demo.mk ./sdk/demo/cdemo81.c ./sdk/demo/occidemo.sql ./sdk/demo/occidemod.sql ./sdk/demo/occidml.cpp ./sdk/demo/sysliblist ./sqlplus -- Alan Burlison -- ICMakefile.pl.gz Description: GNU Zip compressed data

Re: DBI dies on exit

2005-09-27 Thread Alan Burlison
going. There seems to be more progress now. Hopefully they'll be an updated subversion branch by the end of the week. Where can I grab it from when it appears? -- Alan Burlison --

Re: DBI dies on exit

2005-09-27 Thread Alan Burlison
Alan Burlison wrote: The instanc client .so's seem to be mostly a subset of the full client install ones: The only libraries that are pulled in by DBD::Oracle (on Solaris at least) are libclntsh.so.10.1 and libnnz10.so -- Alan Burlison --

Re: DBI dies on exit

2005-09-26 Thread Alan Burlison
into the instant client tree and see if that makes the problem go away. Tim, has there been any progress on getting DBD::Oracle to work with an Instant Client install? How much work do you think it is, I might be persuaded to produce a patch ;-) -- Alan Burlison -- Anyone seen

DBI dies on exit

2005-08-31 Thread Alan Burlison
instantclient and DBD::Oracle 1.16. The script is barfing in perl_destroy(), i.e. after the disconnect() statement. Before I get the rubber gloves out, has anyone seen anything similar? Thanks, -- Alan Burlison --

Re: DBD::mysql and mysql_use_result

2004-08-13 Thread Alan Burlison
on with the existing driver than then try to do a nested prepare/execute/fetch within the outer loop, to get an error - I can't remember the exact wording, but the gist is 'You can't do that now'. -- Alan Burlison --

Re: DBD::mysql and mysql_use_result

2004-08-09 Thread Alan Burlison
... -- Alan Burlison --

DBD::mysql and mysql_use_result

2004-08-06 Thread Alan Burlison
} = 0; under option 1, when $sth is executed the value of the mysql_use_result attribute will be 1, and under option 2 it will be 0. One other question - how do I get the parent DBH from a STH from within the XS code for a DBD driver? -- Alan Burlison --

Re: DBD::mysql and mysql_use_result

2004-08-06 Thread Alan Burlison
}); - $sth-{'mysql_use_result'}=0; #disable $sth-{'mysql_use_result'}=1; #enable Oooh, I'd *love* a copy, pretty please ;-) What does 'mysql_server_prepare' do BTW, I can't find it in the docs? -- Alan Burlison --

Re: DBD::Sybase and Sybase::CTlib build problems w/ 5.8.1, Solaris, gcc 3.x

2003-10-22 Thread Alan Burlison
Terence J. Young, D.C. wrote: How is the patch applied?? Apply it to your perl 5.8.1 build directory before running 'Configure'. See 'man patch' for detailed instructions. Alan Burlison wrote: However, having said that this is Sybase brokenness, this still obviously needs a fix. The reason

Re: DBD::Sybase and Sybase::CTlib build problems w/ 5.8.1, Solaris, gcc 3.x

2003-10-21 Thread Alan Burlison
Sybase and it works, I assume it will fix the Informix problem as well. It would be really helpful if anyone who has seen this problem checks the patch works for them, and then it can be given the all-clear to be integrated into 5.8.2-to-be. Thanks! -- Alan Burlison -- *** hints/solaris_2

Re: DBD::Sybase and Sybase::CTlib build problems w/ 5.8.1, Solaris, gcc 3.x

2003-10-20 Thread Alan Burlison
in Config.pm for building extensions? As a short-term workaround, you can edit Config.pm and remove '-z ignore' from ccdlflags and lddlflags -- Alan Burlison --

Re: DBD::Sybase and Sybase::CTlib build problems w/ 5.8.1, Solaris, gcc 3.x

2003-10-20 Thread Alan Burlison
Gah... By leaving out the required dependencies, and marking them as lazyload, we can speed up start-up slightly. By leaving out the libraries that aren't required, and marking the ones that are required as lazyload, we can speed up start-up slightly. -- Alan Burlison --

DBI-1.37 test failure

2003-08-14 Thread Alan Burlison
.ok t/03handle.# Test 12 got: '124' (t/03handle.t at line 52) #Expected: '112' # t/03handle.t line 52 is: ok(length($imp_data), 112); t/03handle.FAILED test 12 Failed 1/18 tests, 94.44% okay -- Alan Burlison --

Re: DBI-1.37 Build Errors

2003-06-15 Thread Alan Burlison
installed. I am using the Sun Forte 6u2 version of the cc compiler. I realize you are busy; any help you can throw my way will be greatly appreciated. Thank you. -- Alan Burlison --

Re: DBD::Oracle

2003-06-14 Thread Alan Burlison
a 64-bit Oracle library. I don't have Oracle64 to hand, but I believe there is a 'lib32' directory under $ORACLE_HOME that contains the 32-bit libraries. I also believe someone submitted a patch to fix this to the list a while back - see the archives. -- Alan Burlison --

Re: DBD::Oracle - wrong ELF class: ELFCLASS64

2003-06-14 Thread Alan Burlison
will need to link against the 32-bit Oracle libraries. There should be absolutely *no* issue with running a 32-bit client (e.g. DBD::Oracle) against a 64-bit Database server. -- Alan Burlison --

Re: Perl:DBI:Oracle

2003-06-14 Thread Alan Burlison
/index.html http://www.sunfreeware.com/ http://www.blastwave.org/ -- Alan Burlison --

Re: Oracle connect internal/OS authentification

2003-06-06 Thread Alan Burlison
login to Oracle:, $DBI::errstr); return(0); -- Alan Burlison --

Re: Oracle connect internal/OS authentification

2003-06-06 Thread Alan Burlison
the / as sysdba to connect. You can use the ora_session_modes but you still need to pass a username and password. If you look at your code you are connecting as SYS as SYSDBA not / as sysdba. Ah right, I see what you mean. Bummer. -- Alan Burlison --

Re: Module can't find itself

2003-06-06 Thread Alan Burlison
, and is it in your PATH? -- Alan Burlison --

Re: Oracle connect internal/OS authentification

2003-06-06 Thread Alan Burlison
a normal user from/to the dba group: # User not in dba group t$ /tmp/dba ORA-01031: insufficient privileges (DBD ERROR: OCISessionBegin) # User added to dba group $ /tmp/dba BASALT SYS -- Alan Burlison --

Re: Oracle connect internal/OS authentification

2003-06-06 Thread Alan Burlison
. -- Alan Burlison --

Re: how to define env variables in perl script?

2003-06-06 Thread Alan Burlison
. If however the script sets LD_LIBRARY_PATH and then re-execs itself, when ld.so.1 runs again it will see the value of LD_LIBRARY_PATH in the environment and act accordingly. -- Alan Burlison --