RE: Oracle 9i (9.2.0.3) client compatiblity with DBD::Oracle?

2003-08-02 Thread Mayes, Iman
I was able to re-use the same DBD install based on 8i to access a 9i database. This was on RedHat 6.2, although I don't think that matters. Iman -Original Message- From: David K. Whisler [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 2:28 PM To: [EMAIL PROTECTED] Subject: Oracle

DBD::Sybase problems

2003-08-02 Thread Matthew O. Persico
I'm getting flaky behaviour from one query. It will fail with a tds token error, but it cannot be recreated on the next run for the same data. To wit: 20030803.02:01:34: Portia::Utils::portfolioInfo : Cannot execute statement : 1> : 2> select pmf

Re: MySQL, DATETIME, bind, insert problem

2003-08-02 Thread Michael A Chase
On Sat, 02 Aug 2003 12:32:42 + Stephen Collyer <[EMAIL PROTECTED]> wrote: > I have a problem binding arbitrary data to a MySQL DATETIME > column during an insert. > > I generate a SQL string like so: > > > INSERT INTO TestTable > (dob, profession, age, name) > VALUES > (?,?,?,?) > > where

DBI woes

2003-08-02 Thread flatline
I recently got saddled with a project involving mSQL and DBI and it needs to run cleanly under mod_perl at some point, but right now I'm just cleaning the code up so I can maintain it properly. This means changing a lot of "hackish" perl over to something a little more sane for long term develop

Fw: DBD::Oracle for ActiveState Perl 5.8.0 (Windows) is now available

2003-08-02 Thread Michael Garfield Sørensen
- Original Message - From: "Tawfique Mohammad" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, August 02, 2003 11:56 AM Subject: DBD::Oracle for ActiveState Perl 5.8.0 (Windows) is now available > Hi, > > I am not able to connect Oracle 9i from the DBD-Oracle. Actually its

MySQL, DATETIME, bind, insert problem

2003-08-02 Thread Stephen Collyer
I have a problem binding arbitrary data to a MySQL DATETIME column during an insert. I generate a SQL string like so: INSERT INTO TestTable (dob, profession, age, name) VALUES (?,?,?,?) where dob is of type DATETIME. This code is prepared and executed like so: $sth = $dbh->prepare($SQL); $result