Re: DBD::Informix and SELECT from MULTISET column

2007-02-15 Thread tvilliers
On 23 Sep 2005, 16:23, [EMAIL PROTECTED] wrote: I'm looking for a bit more information WRT the returned dataset from selecting from a MULTISET column in Informix please. Create a small table: create table test (col1 int,col2 multiset(int not null)) and insert a couple of rows of test data

Re: CYGWIN 1.5.10-3, DBD_oracle-1.15, Oracle 10.1.0

2004-09-13 Thread tvilliers
On Thu, 15 Jul 2004 22:09:04 +0100, Tim Bunce wrote: Please try http://homepage.eircom.net/~timbunce/DBD-Oracle-1.16-rc5-20040715.tar.gz Oracle.o(.text+0x79a1):Oracle.c: undefined reference to `_OCILobWriteAppend' That should be fixed (one way or another) in 1.16. Please try it.

Re: DBD::Informix and FET_BUF_SIZE

2004-04-23 Thread tvilliers
On Thu, 22 Apr 2004 20:56:43 -0700, Jonathan Leffler wrote: tvilliers wrote: I have a perl script, using the DBI and DBD::Informix to unload data to a flat file. To improve network traffic, the Informix specific FET_BUF_SIZE environment variable is set to 16k. This causes the script to die

DBD::Informix and FET_BUF_SIZE

2004-04-22 Thread tvilliers
Hi, I have a perl script, using the DBI and DBD::Informix to unload data to a flat file. To improve network traffic, the Informix specific FET_BUF_SIZE environment variable is set to 16k. This causes the script to die with Memory fault. When FET_BUF_SIZE is unset, the script runs fine. I've tried

cost of selectall_hashref

2003-11-15 Thread tvilliers
What is the difference in cost between the fetchall_arrayref/selectall_arrayref and the fetchall_hashref/selectall_hashref methods? A slideshow presentation of Tim Bunce (April 2003: Advanced DBI) mentions the performance gains of using fetchall_arrayref when doing a single column select --

RE: fork and die

2003-11-15 Thread tvilliers
... Tielman On Tue, 07 Oct 2003 09:09:58 -0400, John Saylor wrote: hi no- fork YOU and die ... ( 03.10.07 12:31 +0100 ) tvilliers: I have a mother process which needs to fork off a child at every x milestone. Now, the mother has an open database handle, which from my

Re: Perl 5.8.1 and DBD::Informix compile error - SvOK_off

2003-11-15 Thread tvilliers
On Mon, 29 Sep 2003 20:54:33 -0700, Jonathan Leffler wrote: Justin Hopkins wrote: I've just installed perl 5.8.1 and while trying to reinstall DBD::Informix, I've come across this compile error on Solaris 7: ~/src/perlmod/DBD-Informix-2003.04/ make INFORMIXC=/usr/local/bin/perl esqlcc

Re: Perl 5.8.1 and DBD::Informix compile error - SvOK_off

2003-11-15 Thread tvilliers
On Mon, 29 Sep 2003 20:54:33 -0700, Jonathan Leffler wrote: Justin Hopkins wrote: I've just installed perl 5.8.1 and while trying to reinstall DBD::Informix, I've come across this compile error on Solaris 7: ~/src/perlmod/DBD-Informix-2003.04/ make INFORMIXC=/usr/local/bin/perl esqlcc

Re: Perl 5.8.1 and DBD::Informix compile error - SvOK_off

2003-10-28 Thread tvilliers
On Mon, 29 Sep 2003 20:54:33 -0700, Jonathan Leffler wrote: Justin Hopkins wrote: I've just installed perl 5.8.1 and while trying to reinstall DBD::Informix, I've come across this compile error on Solaris 7: ~/src/perlmod/DBD-Informix-2003.04/ make INFORMIXC=/usr/local/bin/perl esqlcc

fork and die

2003-10-07 Thread tvilliers
Hi, I have a mother process which needs to fork off a child at every x milestone. The child performs a small function (ie, write to a log) and then dies. The general idea is that the mother is unaffected by any problems the child may encounter (ie, a closed socket, a full disk, eg). The child

Re: fork and die

2003-10-07 Thread tvilliers
Thanks John, But the idea here is that the child doesn't need a handle at all -- I just want the mother's handle to be left alone ... Tielman On Tue, 07 Oct 2003 09:09:58 -0400, John Saylor wrote: hi no- fork YOU and die ... ( 03.10.07 12:31 +0100 ) tvilliers: I have a mother process

RE: fork and die

2003-10-07 Thread tvilliers
... Tielman On Tue, 07 Oct 2003 09:09:58 -0400, John Saylor wrote: hi no- fork YOU and die ... ( 03.10.07 12:31 +0100 ) tvilliers: I have a mother process which needs to fork off a child at every x milestone. Now, the mother has an open database handle, which from my