Fw: Ora DBD on Sun Ora 9i

2003-01-17 Thread misha
I'm resending this e-mail in a hope that somebody out there has some idea how to solve this problem. Regs., Misha. - Original Message - From: misha To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 3:12 AM Subject: Fw: Ora DBD on Sun Ora 9i I am

installation trouble

2003-01-17 Thread Kirilenkov, Andrei
Hi Tim, I have installed ActivePerl-5.8.0.804-MSWin32-x86.msi under Windows XP, SP1 install DBD::mysql has worked alright. but I can't install DBD::Oracle: ppm installDBD::Oracle searching for 'DBD::Oracle' returned no results. try a broader search first. I would be grateful to you for any

RE: installation trouble

2003-01-17 Thread Sterin, Ilya (I.)
Hmmm, I think that would be because ActiveState does not yet have a DBD::Oracle ppm for 5.8 architecture. I might start one this weekend on xmlproj.com, if someone with Oracle libs can compile and send me the .tar.gz of the blib dir or create the ppm. In the meantime, try something like

ActiveState 5.8 PPM for DBD::Oracle.

2003-01-17 Thread Jeff Urlwin
Ilya, I can probably pack up a 5.8 version of DBI, DBD::Oracle and DBD::ODBC. I have 5.8 installed now... Give me a bit and I'll e-mail them directly to you or give you and ftp site. We can take this offline... Jeff

DBI test 70shell fails if DBI::Shell is already installed

2003-01-17 Thread greg_allen
I think this may be a problem with the dependencies of DBI::Shell, which allows it to be installed before DBI. This may have happened to me as I was using a CPAN autobundle to install stuff. This is under 5.8.0 on Solaris 2.6.1. I'm guessing that the stub DBI::Shell supplied with DBI is broken

FW: Why nobody can help me?

2003-01-17 Thread Sterin, Ilya
The reason no one has answered is because you sent the question to the wrong list. dbi-dev is only for the DBI and DBD core developers, not for users that utilize it for their programs. Here we discuss new features, bugs, etc... You should send everything to [EMAIL PROTECTED], hopefuly you

Selected BLOB field truncated using DBD::mysqlPP

2003-01-17 Thread Laird Shaw
Hi, I am running into a problem whilst testing the use of DBI and DBD::mysqlPP to store and retrieve binary files to/from a mysql database. My test is to insert a file into a blob column and then retrieve it via separate scripts for insertion / retrieval. The test works with one file (a 32k

default bind type in DBD::ODBC

2003-01-17 Thread Andy Edwards
after upgrading my DBD::ODBC to v0.43, i experienced problems with INSERT statements: dbd_error: SQL-22003 (native 0): [Microsoft][ODBC SQL Server Driver]Numeric value out of range (SQL-22003) the statement had worked in the past with v0.28. after much gnashing of teeth, i figured out i could

create Access table

2003-01-17 Thread Jeff Thies
How do I create an Access (the M$ product) table using DBI? I normally just open a database handle, open a statement and run the SQL to create the table. Because Access is file based, I tried creating a blank some_table.mdb file for the database handle, but this did not work. Do I have to

Re: DBD::Informix assistance (Successful Build!)

2003-01-17 Thread oott sayarath
I have successfully compiled Perl DBD::Informix 1.0.4 on Hpux 11i ( 64 bit ) environment! Much thanks goes to Mac,Daniel Tong, Evan, and Johnathan L. for their helpful hints...What I had to do (from what everyone was hinting me to), was to start from scratchmeaning, I had to Configure

how to get the warning message from DBI

2003-01-17 Thread limei zhang
Hi, there, I am using IMB DB2; DBD::DB2 driver ; perl program If I type a sql command on command line, eg db2 delete from table1 where col1 = a it will return a warning message as below if the record does not exist: SQL0100W No row was found for FETCH, UPDATE or DELETE; or the result of a

RE: default bind type in DBD::ODBC

2003-01-17 Thread Jeff Urlwin
after upgrading my DBD::ODBC to v0.43, i experienced problems with INSERT statements: dbd_error: SQL-22003 (native 0): [Microsoft][ODBC SQL Server Driver]Numeric value out of range (SQL-22003) the statement had worked in the past with v0.28. after much gnashing of teeth, i

Re: Selected BLOB field truncated using DBD::mysqlPP

2003-01-17 Thread Ron Savage
On Sat, 18 Jan 2003 05:17:55 +1100, Laird Shaw wrote: Hi Laird Great experiment! Thanx. Result: o The mysqlPP driver is corrupt, in - I suspect - more ways than one o Stop using it. o Report problem to maintainer via http://rt.cpan.org o Instead, use straight mysql version, eg via Randy

Re: Selected BLOB field truncated using DBD::mysqlPP

2003-01-17 Thread Laird Shaw
Thanks for that Ron, You have confirmed that there is a bug and I picked up some tips from your code - two birds with one stone. :) I will report the bug as soon as I have had a chance to install DBD::mysql and run your script for myself. Unfortunately I am having trouble installing this