[zack@codesourcery.com: Bug#151337: libdbi-perl: whatis parse failures for DBI::Const::GetInfo::{ANSI,ODBC}.3pm.gz]

2002-06-30 Thread Christian Hammers
FYI bye, -christian- ---BeginMessage--- Package: libdbi-perl Version: 1.28-1 Severity: minor The DBI::Const::GetInfo::{ANSI,ODBC} manpages lack required header text, which causes mandb -c to report errors: mandb: warning: /usr/share/man/man3/DBI::Const::GetInfo::ANSI.3pm.gz: whatis

Re: sth-cancel

2002-06-30 Thread Tim Bunce
Support for cancel was added in DBD::Oracle 1.09 thanks to a patch from Fredrik Sjoholm. He sent this test script with it: #!/usr/bin/perl use DBI; use strict; # test $sth-cancel() implementation my $db = DBI-connect ('dbi:Oracle:', ez, ez, { RaiseError=1, AutoCommit=0 }); my $q = $db-prepare

Re: [zack@codesourcery.com: Bug#151337: libdbi-perl: whatis parse failures for DBI::Const::GetInfo::{ANSI,ODBC}.3pm.gz]

2002-06-30 Thread Tim Bunce
Thanks. I'll fix for the next release. Tim. On Sun, Jun 30, 2002 at 04:13:32AM +0200, Christian Hammers wrote: FYI bye, -christian- Subject: Bug#151337: libdbi-perl: whatis parse failures for DBI::Const::GetInfo::{ANSI,ODBC}.3pm.gz Reply-To: Zack Weinberg [EMAIL PROTECTED], [EMAIL

Re: sth-cancel

2002-06-30 Thread Paul DuBois
At 16:23 +0100 6/30/02, Tim Bunce wrote: Support for cancel was added in DBD::Oracle 1.09 thanks to a patch from Fredrik Sjoholm. Will cancel eventually become the general preferred replacement for finish for early termination of result set fetching operations? He sent this test script with

Re: sth-cancel

2002-06-30 Thread Michael A Chase
On Sun, 30 Jun 2002 11:48:49 -0500 Paul DuBois [EMAIL PROTECTED] wrote: At 16:23 +0100 6/30/02, Tim Bunce wrote: Support for cancel was added in DBD::Oracle 1.09 thanks to a patch from Fredrik Sjoholm. Will cancel eventually become the general preferred replacement for finish for early

CGI.pm DBI

2002-06-30 Thread Will
Greets All, A friend told me that I shouldnt use DBI's connect(), prepare(), exec()and disconnect() methods when I am using CGI.pm, but he said rather to use do(). Can anyone tell me why? And, also, can anyone give me some examples of how the do() method would allow me to connect, run SQL

Re: sth-cancel

2002-06-30 Thread Tim Bunce
On Sun, Jun 30, 2002 at 10:43:19AM -0700, Michael A Chase wrote: On Sun, 30 Jun 2002 11:48:49 -0500 Paul DuBois [EMAIL PROTECTED] wrote: At 16:23 +0100 6/30/02, Tim Bunce wrote: Support for cancel was added in DBD::Oracle 1.09 thanks to a patch from Fredrik Sjoholm. Will cancel

Re: CGI.pm DBI

2002-06-30 Thread Dean Arnold
Unless you connect(), you won't be able to do()... perhaps he was refering to using Apache's DBI frontend w/ connection pools ? Greets All, A friend told me that I shouldnt use DBI's connect(), prepare(), exec()and disconnect() methods when I am using CGI.pm, but he said rather to use

Re: CGI.pm DBI

2002-06-30 Thread Paul DuBois
At 15:14 -0700 6/30/02, Will wrote: Greets All, A friend told me that I shouldnt use DBI's connect(), prepare(), exec()and disconnect() methods when I am using CGI.pm, but he said rather to use do(). If that's *all* he told you, that's ridiculous. Perhaps there is more to this story? Can

Re: sth-cancel

2002-06-30 Thread Paul DuBois
At 23:32 +0100 6/30/02, Tim Bunce wrote: On Sun, Jun 30, 2002 at 10:43:19AM -0700, Michael A Chase wrote: On Sun, 30 Jun 2002 11:48:49 -0500 Paul DuBois [EMAIL PROTECTED] wrote: At 16:23 +0100 6/30/02, Tim Bunce wrote: Support for cancel was added in DBD::Oracle 1.09 thanks to a patch

CLOB insert with bind_param problem

2002-06-30 Thread Stacy Mader
Hi all. Using DBI 1.28 and DBD::Oracle 1.12 compiled against Oracle 8.1.7, I have the following: use strict; use DBI; $text = This is a test.\nx6000; $sth = $dbh-prepare(qq{ DECLARE next NUMBER; BEGIN SELECT MAX(NUM+1) INTO next FROM REPORT; INSERT INTO EXCESS