Re: DBD::Oracle seems not working through Apache

2004-08-05 Thread Wieland Pusch
Hello John, at least in Apache 1.x you put in http.conf some lines like these: SetEnv ORACLE_HOME /usr/oracle/OraHome1 SetEnv NLS_LANG GERMAN_GERMANY.WE8ISO8859P1 HTH Wielandmailto:[EMAIL PROTECTED]

Not getting all the text from the DB I should

2004-08-05 Thread crayola
Folks, I have a table in a Mysql DB that has a bunch of fields. One of those fields dbdesc is a text column type that contains the string This is a testdb. Below is the output from doing a select * from that table using the mysql binary (truncated for brevity). | dbname | dbdesc |

Re: DBD::Oracle seems not working through Apache

2004-08-05 Thread John
Well, how could i define the $ORACLE_HOME in the connection string? - Original Message - From: Scott Dial [EMAIL PROTECTED] To: John [EMAIL PROTECTED] Sent: Thursday, August 05, 2004 3:03 PM Subject: Re: DBD::Oracle seems not working through Apache ie:

RE: Not getting all the text from the DB I should

2004-08-05 Thread Bruce Hartleben
The arg=value pairs in your print line are space delimited. The first space in your string, just after This, is seen as a delimiter. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, August 05, 2004 10:59 AM To: [EMAIL PROTECTED] Subject: Not getting

Re: Drivers that support server-prepare-statements?

2004-08-05 Thread Tim Bunce
On Thu, Aug 05, 2004 at 01:40:14AM -, Greg Sabino Mullane wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm working on my OSCON presentation, and was hoping to get a list of DBD drivers that currently support server prepare statements? Does anyone know if such a list

Re: fetchall_arrayref and Can't set DBI::st=HASH(0x850eeb0)-{NAME}: unrecognised attribute or invalid value

2004-08-05 Thread Tim Bunce
I don't see any metion of it in the docs. but I recall that DBD::mysql only makes statement handle attributes like NAME available while the statement handle is still Active. fetchall_arrayref() will fetch all the data and so leave the statement handle in-Active. Just get the NAME array ref

Re: fetchall_arrayref and Can't set DBI::st=HASH(0x850eeb0)-{NAME}: unrecognised attribute or invalid value

2004-08-05 Thread Rudy Lippan
On Thu, 5 Aug 2004, Tim Bunce wrote: I don't see any metion of it in the docs. but I recall that DBD::mysql only makes statement handle attributes like NAME available while the statement handle is still Active. Should DBD::mysql make the attribs available when the handle is not active? Rudy