perl.dbi.dev...Re: How About Connection Pools by Tim Bunce- June 12, 2008 My general approach to new features is to encourage people toimplement them using driver-private methods or DBIx:: modules first.We can discuss spec changes once we&39;ve got some real-world experience.I think connection pools could be implemented as a DBI sub-class or viathe Callback mechanism.In relation to Apache2, to be more useful than connect_cached theconnection pool really needs to be shared between threads.Search the archives for emails mentioning DBI::Pool,...http://www.nntp.perl.org/group/perl.dbi.dev/2008/06/msg5382.html How About Connection Pools by John Scoles- June 12, 2008 I have been doing a little research into connection Pooling with OCI and I was just wondering if the concept of a "Connection Pool" would fit into the DBI spec someplace.As we already have DBI::Apache and "connect_cache" would it just be redundant to add this "connect_pool" as the present functionality can be &39;Bent&39; to that waySay something like this$DBI->connect_pool($pool_name,$data_source,$username,...http://www.nntp.perl.org/group/perl.dbi.dev/2008/06/msg5381.html Re: Problem in connecting Perl with Oracle by John Scoles- June 11, 2008 You are using an older Oracle client that does not haveOCIXML TypeCreateFromSrcEither use an earlier version of DBD.Oracle like 1.20 or 1.19 or update you Oracle client to the latest version of the instant client.can you post what the results of your Makefile.PL and your compile where.You might want to check that the what your Path setting is as wellKanhaiya Prasad wrote:> Hello>> I&39;ve installed Perl 5.10 successfully and all other perl program running> perfectly.> But...http://www.nntp.perl.org/group/perl.dbi.dev/2008/06/msg5380.html Problem in connecting Perl with Oracle by Kanhaiya Prasad- June 11, 2008 HelloI&39;ve installed Perl 5.10 successfully and all other perl program runningperfectly.But it&39;s showing following problem when i&39;m trying to connect oracleProblem:1. The procedure entry point OCIXML TypeCreateFromSrc could not be locatedin the dynamic link library OCI.dll.2. install_driver(Oracle) failed: Can&39;t load&39;C:PerllibautoDBDOracleOracle.dll&39; for module DBD::Oracle: load_file:The specified procedure could not be found at C:PerllibDynaLoader.pm line202at (eval 4) line...http://www.nntp.perl.org/group/perl.dbi.dev/2008/06/msg5379.html Re: Perl 5.10.0 by David Favor- June 5, 2008 Scott Ryan wrote:> Hi I am struggling to build the DBD-Oracle module on mandriva 2008.1.> It uses perl 5.10.0 and I get the following:> > roottestinglaptop DBD-Oracle-1.21 make> cp Oracle.pm bliblibDBDOracle.pm> cp mkta.pl bliblibDBDmkta.pl> cp oraperl.ph blibliboraperl.ph> cp dbdimp.h blibarchautoDBDOracledbdimp.h> cp ocitrace.h blibarchautoDBDOracleocitrace.h> cp Oraperl.pm bliblibOraperl.pm> cp Oracle.h blibarchautoDBDOracleOracle.h> cp mk.pm...http://www.nntp.perl.org/group/perl.dbi.dev/2008/06/msg5378.html Perl 5.10.0 by Scott Ryan- June 5, 2008 Hi I am struggling to build the DBD-Oracle module on mandriva 2008.1.It uses perl 5.10.0 and I get the following:roottestinglaptop DBD-Oracle-1.21 makecp Oracle.pm bliblibDBDOracle.pmcp mkta.pl bliblibDBDmkta.plcp oraperl.ph blibliboraperl.phcp dbdimp.h blibarchautoDBDOracledbdimp.hcp ocitrace.h blibarchautoDBDOracleocitrace.hcp Oraperl.pm bliblibOraperl.pmcp Oracle.h blibarchautoDBDOracleOracle.hcp mk.pm blibarchautoDBDOraclemk.pmcp libDBDOracleGetInfo.pm...http://www.nntp.perl.org/group/perl.dbi.dev/2008/06/msg5377.html Re: Repeated values in ODBC.pm by Tim Bunce- June 2, 2008 Applied, thanks.Tim.On Sun, Jun 01, 2008 at 07:29:00PM -0400, Greg Sabino Mullane wrote:> Looks like a minor cut-n-paste error. Patch inlined:> > > Index: libDBIConstGetInfoODBC.pm> ===================================================================> --- libDBIConstGetInfoODBC.pm (revision 11363)> +++ libDBIConstGetInfoODBC.pm (working copy)> -543,9 +543,6 > SQL_AM_NONE => 0> , SQL_AM_CONNECTION .http://www.nntp.perl.org/group/perl.dbi.dev/2008/06/msg5376.html Repeated values in ODBC.pm by Greg Sabino Mullane- June 1, 2008 Looks like a minor cut-n-paste error. Patch inlined:Index: libDBIConstGetInfoODBC.pm===================================================================--- libDBIConstGetInfoODBC.pm (revision 11363)+++ libDBIConstGetInfoODBC.pm (working copy) -543,9 +543,6 SQL_AM_NONE => 0 , SQL_AM_CONNECTION => 1 , SQL_AM_STATEMENT => 2-, SQL_AM_NONE => 0-, SQL_AM_CONNECTION .http://www.nntp.perl.org/group/perl.dbi.dev/2008/06/msg5375.html |