Re: DBD::CSV

2003-03-04 Thread Ron Savage
On Mon, 3 Mar 2003 17:56:33 +0100, Peter Schuberth wrote: Hello, Hi Peter I would also like to stick to MySQL, but I have to change it, since there is no DB-Server available. What do you mean? I use MySQL under Windows. -- Cheers Ron Savage, [EMAIL PROTECTED] on 04/03/2003

Re: DBI 1.34 error?

2003-03-04 Thread Tim Bunce
On Mon, Mar 03, 2003 at 09:43:45PM -0800, Jonathan Leffler wrote: Tim Bunce wrote: package name at C:/Perl/site/lib/DBD/Proxy.pm line 272. BEGIN not safe after errors--compilation aborted at C:/Perl/site/lib/DBD/Proxy.pm line 414. Compilation failed in require at (eval 3) line 3. ***

Re: Anyone have DBI code that depends on $sth-{NAME} containing tablename.fieldname?

2003-03-04 Thread Tim Bunce
It looks like a false alarm. I can't reproduce it outside Class::DBI (using mysql client, or DBD::mysql, using v3 or v4) so I need to dig deeper into Class::DBI to see what's happening there. Tim. On Mon, Mar 03, 2003 at 06:39:01PM -0600, Paul DuBois wrote: At 0:18 + 3/4/03, Tim Bunce

Re: connect_cached question

2003-03-04 Thread Adrian Howard
I'd say the current behaviour is correct. I have situations where I have multiple DBI connects to the same DB with different attributes. I don't want these munged into the same $dbh if I choose to use connect_cached. I also don't want the state of my handles changed if another piece of code

Re: DBD::CSV

2003-03-04 Thread Peter Schuberth
Hello Jeff, below the sample query, the one which is commented is working under Linux (this is the one I need) , but gives an empty result under Windows, then I removed the field artnummer wich is also a string field, then I got some results but the result looks like a simple OR between (artbez_'

RE: :Oracle::st not returning error retrieving CLOB's

2003-03-04 Thread robert . stagg
You can cure this error by setting LongReadLen to a bigger number I know. I'm trying to find a way to do it programmatically. When I $sth-fetch* a CLOB the following is sent to STDERR DBD::Oracle::st fetch failed: ERROR fetching field 2 of 1. LOB value truncated from 10347 to 80.

Re: DBI 1.34 error?

2003-03-04 Thread Bob X
Tim Bunce [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Mon, Mar 03, 2003 at 04:25:13PM -0500, Bob X wrote: snip Thanks. I believe the appended patch fixes it. Tim. *** lib/DBD/Proxy.pm2003/02/28 17:50:06 11.12 --- lib/DBD/Proxy.pm2003/03/03 22:37:14

RE: :Oracle::st not returning error retrieving CLOB's

2003-03-04 Thread robert . stagg
Just figured it out OLD: my $st = select $clob_field from $table where $column in ($search); my $sth = $dbh-prepare($st); $sth-execute; my @rows = $sth-fetch; NEW: my $st = select $clob_field from $table where $column in ($search);

Re: DBD::CSV

2003-03-04 Thread Peter Schuberth
Hello Jeff, I believe the problem of the low speed is due using SQL-Statement 1.005. I think I should change to a XS Version like 0.1021. But from where can I get such a package? I have loaded it initaly from ActivePerl. But the package they provide there for 6xx build (5.6.1) has only the

Re: DBD-Oracle w Perl 5.8 on Win2000 looks for perl56.dll

2003-03-04 Thread Dominik Seelow
Hi Folks, I am a Perl newbie so please forgive if I've done something stupid or omiitted something smart. I have the Activeperl 5.8 distribution which is running fine. I used PPM to install DBI-Oracle, which seemed to go fine. When I run any programs (including test.pl or ora_explain)

(Fwd) DBD::Oracle and AIX 5.1 64 bit

2003-03-04 Thread Tim Bunce
- Forwarded message from [EMAIL PROTECTED] - Delivered-To: [EMAIL PROTECTED] Subject: DBD::Oracle and AIX 5.1 64 bit To: [EMAIL PROTECTED] From: [EMAIL PROTECTED] Date: Tue, 4 Mar 2003 11:40:32 +0100 Hallo, do you have experience with AIX 5.1 64 bit mode and DBD::Oracle? I have a

Re: DBI 1.34 error?

2003-03-04 Thread Tim Bunce
On Mon, Mar 03, 2003 at 08:20:34PM -0500, Bob X wrote: Tim Bunce [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Mon, Mar 03, 2003 at 04:25:13PM -0500, Bob X wrote: snip Thanks. I believe the appended patch fixes it. Tim. *** lib/DBD/Proxy.pm2003/02/28 17:50:06

connect

2003-03-04 Thread CALL Christophe
hi, How can i connect to an Oracle database with an oracle user where the authentification were set to externaly. is it possible ? thanks Christophe

Problems installing DBD1.12 on DBI1.34 and Perl 5.8

2003-03-04 Thread Andreas Koch
Title: Problems installing DBD1.12 on DBI1.34 and Perl 5.8 After successful installation of Perl and DBI, i get some errors installing the DBD 1.12. What can i do to fix it? The make process give me following output --- Oracle.xs : In function

Re: connect_cached question

2003-03-04 Thread M. Addlework
Thanks for the feedback. I'm confused regarding multiple connections to the same database/user. What's the point in ever having multiple connections to the same database/user, other than say, one having PrinError=0 and the other having PrintError=1. Or is having different attributes itself the

RE: (Fwd) DBD::Oracle and AIX 5.1 64 bit

2003-03-04 Thread Fernando Luna
I had this problem until I pointed ORACLE_HOME to a directory that contained all the Pro*C executables. I think it's looking for your OCI installation... -Original Message- From: Tim Bunce [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 5:14 AM To: [EMAIL PROTECTED] Cc:

Re: DBD::CSV

2003-03-04 Thread Jeff Zucker
Peter Schuberth wrote: Hello Jeff, I believe the problem of the low speed is due using SQL-Statement 1.005. I think I should change to a XS Version like 0.1021. Maybe it will help, though as others have pointed out MySQL and PostgreSQL and SQLite may be better for you All of them work fine on

Re: DBD::CSV

2003-03-04 Thread Jeff Zucker
Tim Bunce wrote: On Mon, Mar 03, 2003 at 10:07:29AM -0800, Jeff Zucker wrote: use SQL::Statement; print $SQL::Statement::VERSION; Or run this command perl -MSQL::Statement= Hmm, what am I missing? That doesn't work for me with SQL::Statement. It also doesn't work for me with

Re: DBD::CSV

2003-03-04 Thread Scott R. Godin
Jeff Zucker wrote: Tim Bunce wrote: On Mon, Mar 03, 2003 at 10:07:29AM -0800, Jeff Zucker wrote: use SQL::Statement; print $SQL::Statement::VERSION; Or run this command perl -MSQL::Statement= Hmm, what am I missing? That doesn't work for me with SQL::Statement. It also

ANNOUNCE: IBM Informix Database Driver for Perl Version 2003.03.0400 (2003-03-04) released

2003-03-04 Thread Jonathan Leffler
IBM Informix Database Driver for Perl Version 2003.03.0400 (2003-03-04) has been uploaded to CPAN. IBM Informix Database Driver for Perl (also known as DBD::Informix) is the driver code that enables Perl 5.005 or later to access Informix databases via the DBI module (but if you are not already

Re: Problems installing DBD1.12 on DBI1.34 and Perl 5.8

2003-03-04 Thread Tim Bunce
On Tue, Mar 04, 2003 at 04:33:59PM +0100, Andreas Koch wrote: After successful installation of Perl and DBI, i get some errors installing the DBD 1.12. What can i do to fix it? There are no errors, only warnings. The short story is that DBD::Oracle has not yet been updated for recent perl

Re: DBD::CSV

2003-03-04 Thread Tim Bunce
On Tue, Mar 04, 2003 at 09:32:27AM -0800, Jeff Zucker wrote: Tim Bunce wrote: On Mon, Mar 03, 2003 at 10:07:29AM -0800, Jeff Zucker wrote: use SQL::Statement; print $SQL::Statement::VERSION; Or run this command perl -MSQL::Statement= Hmm, what am I missing? That

fork() issues w/ Win32, Perl 5.6.1, and DBI 1.32

2003-03-04 Thread Dean Arnold
While trying to test some multiprocessing on Win2K (ActiveState 633), I ran into an issue I'm hoping you can shed some light on. If I open a $dbh before forking off some kids that also open some $dbh's, I get the following error in the kids: DBD::Teradata::dr connect failed: handle 1 is owned by

RE: Problems installing DBD1.12 on DBI1.34 and Perl 5.8

2003-03-04 Thread Simon Taylor
Will this include support for Oracle 8 objects? -Original Message- From: Tim Bunce [mailto:[EMAIL PROTECTED] Sent: 04 March 2003 22:25 To: Andreas Koch Cc: [EMAIL PROTECTED] Subject: Re: Problems installing DBD1.12 on DBI1.34 and Perl 5.8 On Tue, Mar 04, 2003 at 04:33:59PM +0100,

Re: Problems installing DBD1.12 on DBI1.34 and Perl 5.8

2003-03-04 Thread Tim Bunce
On Tue, Mar 04, 2003 at 10:45:45PM -, Simon Taylor wrote: Will this include support for Oracle 8 objects? Is your cheque in the mail? ;-) Let's get the ball rolling bfore we try to steer it shall we? Tim. -Original Message- From: Tim Bunce [mailto:[EMAIL PROTECTED] Sent: 04

Re: fork() issues w/ Win32, Perl 5.6.1, and DBI 1.32

2003-03-04 Thread Tim Bunce
On Tue, Mar 04, 2003 at 02:31:37PM -0800, Dean Arnold wrote: While trying to test some multiprocessing on Win2K (ActiveState 633), I ran into an issue I'm hoping you can shed some light on. If I open a $dbh before forking off some kids that also open some $dbh's, I get the following error in

Re: fork() issues w/ Win32, Perl 5.6.1, and DBI 1.32

2003-03-04 Thread Dean Arnold
On Tue, Mar 04, 2003 at 02:31:37PM -0800, Dean Arnold wrote: While trying to test some multiprocessing on Win2K (ActiveState 633), I ran into an issue I'm hoping you can shed some light on. If I open a $dbh before forking off some kids that also open some $dbh's, I get the following

funny fields and

2003-03-04 Thread Jeff Thies
I have an Access database with funny field names like: REPORT # I forgot the advice to use square brackets [] and used double quotes instead : REPORT #. Now, that works fine. But is that going to cause me trouble somewhere/sometime? Should I replace that with the square brackets, or let it

Re: (Fwd) DBI - the book

2003-03-04 Thread Jared Still
The ease or difficulty in doing this is greatly dependent on the format of the SQL in the flat file. If it is arranged so that the only text in the file is DDL, and that each statement is delimited with a '/' or ';', it's just a matter of making a connection to the database, opening the file,