Re: AutoCommit and DBI::Proxy driver

2006-09-04 Thread John Escott
The problems start when I try to set '$dbh-{AutoCommit} =0' (or call $dbh-begin_work' ) for the SECOND time (after the first call to '$dbh-commit'). The error says that AutoCommit is not supported by my driver. I've been bitten by this in the past too, and understand it's a bug in

Re: Problem with DBI make

2006-09-04 Thread Tim Bunce
On Mon, Sep 04, 2006 at 09:43:11AM +0100, John Gallagher wrote: Hi Tim, I've just run make again and included the output The system I'm trying to install DBI on is a hp-ux 11.11 And the version of perl installed is 5.8.7 cc -c-D_POSIX_C_SOURCE=199506L -D_REENTRANT

Re: Make test of 1.52 failed on childhandles

2006-09-04 Thread Tim Bunce
Ah. Thanks. Try changing both to use Scalar::Util::weaken( my $test = [] ); Tim. On Mon, Sep 04, 2006 at 02:29:53AM +0100, Clive George wrote: t/72childhandles works fine - the warn $HAS_WEAKEN says 1 at t/72childhandles.t line 19.. The zvpp ones give Use of uninitialized

Re: AutoCommit and DBI::Proxy driver

2006-09-04 Thread Tim Bunce
On Mon, Sep 04, 2006 at 09:36:30AM +0100, John Escott wrote: The problems start when I try to set '$dbh-{AutoCommit} =0' (or call $dbh-begin_work' ) for the SECOND time (after the first call to '$dbh-commit'). The error says that AutoCommit is not supported by my driver. I've been

Re: Make test of 1.52 failed on childhandles

2006-09-04 Thread Clive George
Yup, that worked - now reporting 1 for both t/72 and PurePerl.pm, and passed the tests fine. cheers, clive - Original Message - From: Tim Bunce [EMAIL PROTECTED] To: Clive George [EMAIL PROTECTED] Cc: Tim Bunce [EMAIL PROTECTED]; dbi-users@perl.org Sent: Monday, September 04, 2006

ANNOUNCE: Advanced DBI Tutorial Slides

2006-09-04 Thread Tim Bunce
file: $CPAN/authors/id/T/TI/TIMB/DBI_AdvancedTalk_200608.pdf size: 486540 bytes md5: c305fe9ae393a534f17efc83a4563d28 Slides for this years version of my Advanced DBI tutorial are available online. Tim.

RE: Encoding

2006-09-04 Thread Martin J. Evans
On 31-Aug-2006 Daniel Zeman wrote: Hi, I wonder if anyone can help me. I am using - Debian Linux - Perl 5.8.8 - DBI (I do not know how to figure out its version) perl -MDBI -e 'print $DBI::VERSION\n;' - MySQL 5.0.22-Debian_3-log What DBD::mysql version are you using? perl

RE: Encoding

2006-09-04 Thread h-taguchi
perl -MDBI -e 'print $DBI::VERSION\n;' Less typed: perl -MDBI -le 'print DBI-VERSION' Regards,

Re: code needed

2006-09-04 Thread Tom Phoenix
On 9/3/06, Hal Wigoda [EMAIL PROTECTED] wrote: anyone have any code that will return the links and tags from web document downloaded using LWP? Have you looked on CPAN yet? http://search.cpan.org/ Hope this helps! --Tom Phoenix Stonehenge Perl Training

Re: code needed

2006-09-04 Thread Tom Phoenix
On 9/3/06, Hal Wigoda [EMAIL PROTECTED] wrote: HTML-LinkExtractor-0.13 libwww-perl-5.805 linkcheck-1.05 HTML-Parser-3.55 HTML-SimpleLinkExtor-1.13 HTML-Tagset-3.10 have failed me. In what way have they failed you? Are they somehow insufficient for your task? Have you tried HTML::LinkExtor?

Re: code needed

2006-09-04 Thread Eric Krause
Check out this web page, http://www.developer.com/lang/other/article.php/3454041. It has examples that return link and tags using WWW::Mechanize, which is a subset of LWP. -Eric Hal Wigoda wrote: anyone have any code that will return the links and tags from web document downloaded using

Re: Getting DBD::Oracle tests working

2006-09-04 Thread Karl Auer
On Sun, 2006-09-03 at 18:47 -0400, John D Groenveld wrote: In message [EMAIL PROTECTED], Karl Auer writes: export TWO_TASK=T:my_db_host_name:some_id $ TWO_TASK=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=my_db_host_name)(PORT=1521)))(CONNECT_DATA=(SID=some_sid))) $ export

Re: AutoCommit and DBI::Proxy driver

2006-09-04 Thread John Escott
Tim Bunce [EMAIL PROTECTED] wrote on 04/09/2006 12:02:53: I'd appreciate it, John, if you could file a bug report on rt.cpan.org Ok, Tim, done. Ticket #21320. best regards, John.

RE: Problem with DBI make

2006-09-04 Thread John Gallagher
Title: RE: Problem with DBI make Hi Tim, I've just run make again and included the output The system I'm trying to install DBI on is a hp-ux 11.11 And the version of perl installed is 5.8.7 John -Original Message- From: Tim Bunce [mailto:[EMAIL PROTECTED]] Sent: 01

Re: Problem with DBI make

2006-09-04 Thread Jonathan Leffler
On 9/4/06, John Gallagher [EMAIL PROTECTED] wrote: I've just run make again and included the output The system I'm trying to install DBI on is a hp-ux 11.11 And the version of perl installed is 5.8.7 (Bundled) cc: warning 480: The -A option is available only with the C/ANSI C product;

Re: Encoding

2006-09-04 Thread Daniel Zeman
Martin J. Evans napsal(a): On 31-Aug-2006 Daniel Zeman wrote: Hi, I wonder if anyone can help me. I am using - Debian Linux - Perl 5.8.8 - DBI (I do not know how to figure out its version) perl -MDBI -e 'print $DBI::VERSION\n;' 1.51 - MySQL 5.0.22-Debian_3-log What DBD::mysql

Re: Encoding

2006-09-04 Thread Martin J. Evans
On Mon, 2006-09-04 at 14:13 -0400, Daniel Zeman wrote: Martin J. Evans napsal(a): On 31-Aug-2006 Daniel Zeman wrote: Hi, I wonder if anyone can help me. I am using - Debian Linux - Perl 5.8.8 - DBI (I do not know how to figure out its version) perl -MDBI -e 'print

execute_array/execute_for_fetch (was: ANNOUNCE: Advanced DBI Tutorial Slides)

2006-09-04 Thread Tim Bunce
On Mon, Sep 04, 2006 at 05:21:17PM +0100, Martin J. Evans wrote: It did raise an issue where I could do with some clarification. The slides say: Execute a statement for multiple values $sth = $dbh-prepare(insert into table (foo,bar) values (?,?)); $tuples =

Re: code needed

2006-09-04 Thread Scott T. Hildreth
Since this is not a dbi problem, can DBI-Users be taken off the cc list. On Mon, 2006-09-04 at 08:07 -0400, Eric Krause wrote: Check out this web page, http://www.developer.com/lang/other/article.php/3454041. It has examples that return link and tags using WWW::Mechanize, which is a

DBI install error

2006-09-04 Thread Ouyang, Jian
Hi, I try to install the DBI package but it failed. Can you please help? Thanks. Jian {/home/j/jouyang/dot/DBI-1.50 27}% perl Makefile.PL *** You are using a perl configured with threading enabled. *** You should be aware that using multiple threads is *** not recommended for

Re: db2 - persistent connection

2006-09-04 Thread Darin McBride
On Saturday 02 September 2006 00:21, Jack Faley ( The Tao of Jack ) wrote: I have several ( 100 - 200 ) small exits c oming from an app that update db2 tables. This works fine but the dba's don't like that many open connection overheads. This isn't cgi/apache. These are all seperate

Re: db2 - persistent connection

2006-09-04 Thread Jack Faley ( The Tao of Jack )
On 9/4/06, Darin McBride [EMAIL PROTECTED] wrote: On Saturday 02 September 2006 00:21, Jack Faley ( The Tao of Jack ) wrote: I have several ( 100 - 200 ) small exits c oming from an app that update db2 tables. This works fine but the dba's don't like that many open connection overheads. This