Re: DBD::Informix installation problem

2003-03-20 Thread Jonathan Leffler
paul.reilly wrote: I have been trying to istall the DBD::Informix driver. Initially when I tried I was informed that I did not have a runtime binary 'esql' as in /apps/informix/bin/esql, so I installed the client SDK. now when I run 'perl Makefile.pl', I get the error: Testing whether your Informi

RE: need help on "bind_columns "

2003-03-20 Thread Rozengurtel, Daniel
This is WONDERFUL !!! Works very nicely :) thanx a lot. Dan -Original Message- From: Michael A Chase [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 3:36 PM To: '[EMAIL PROTECTED]'; Rozengurtel, Daniel Subject: Re: need help on "bind_columns " On Thu, 20 Mar 2003 15:06:28 -0

Re: need help on "bind_columns "

2003-03-20 Thread Michael A Chase
On Thu, 20 Mar 2003 15:06:28 -0500 "Rozengurtel, Daniel" <[EMAIL PROTECTED]> wrote: > I have a question about bind_columns feature. > In my next piece of code I am trying to get the values from specific fields > of a table to be associated with their names in ISSU_FIELDS hash. I cannot > indicate

need help on "bind_columns "

2003-03-20 Thread Rozengurtel, Daniel
Hello all, I have a question about bind_columns feature. In my next piece of code I am trying to get the values from specific fields of a table to be associated with their names in ISSU_FIELDS hash. I cannot indicate the exact fields I wanna fetch since its going to be chaning as per client. Ther

Re: auto-quoting w/ placeholders and execute() ?

2003-03-20 Thread Rudy Lippan
On Thu, 20 Mar 2003, Aaron Turner wrote: > Ok, I'm going crazy with this. I know that if I use placeholders (?) > in my queries, and pass the values via execute() that it's supposed > to automatically call quote() on them. And it does that about 99% > of the time. Of course that 1% is *argh*!

Re: DBD::Oracle on MacOSX - multiple definitions of symbol problem

2003-03-20 Thread Tom Mornini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thursday, March 20, 2003, at 04:24 AM, Brook Schofield wrote: > On Thursday, March 20, 2003, at 09:38 PM, Tim Bunce wrote: >> On Thu, Mar 20, 2003 at 05:17:48PM +1000, Brook Schofield wrote: >>> Patches are available from: >>> >>> http://199.182.3

auto-quoting w/ placeholders and execute() ?

2003-03-20 Thread Aaron Turner
[Sorry if this is a repeat, my last email didn't seem to show up in the list archives and I never got a response.] Ok, I'm going crazy with this. I know that if I use placeholders (?) in my queries, and pass the values via execute() that it's supposed to automatically call quote() on them. And i

RE: How to populate a popup_menu() (combo box, drop down list)

2003-03-20 Thread Jesse Erlbaum
Hi Colette -- > I am new with CGI, Perl, the Perl DBI, and mySQL. I am trying > to figure out > the best way to populate a drop down list with values from a > table in a > mySQL database. I suspect it is very easy, but I have not been able to > pinpoint the appropriate code and get it working

DBD::Informix installation problem

2003-03-20 Thread paul.reilly
Hi, I have been trying to istall the DBD::Informix driver. Initially when I tried I was informed that I did not have a runtime binary 'esql' as in /apps/informix/bin/esql, so I installed the client SDK. now when I run 'perl Makefile.pl', I get the error: Testing whether your Informix test env

RE: DBI/DBD

2003-03-20 Thread JT MacNeil
Hello, Regarding the upgrade to Perl 5.8, I've done it, and noticed no real problems. You may want to be careful if you're using threads, internationalization, or other 'esoteric' things like that. As for 'regular' Perl (if there is such a thing ;)), 5.8 runs it quite nicely. Regard

How to populate a popup_menu() (combo box, drop down list)

2003-03-20 Thread Colette Lamm
Hi, I am new with CGI, Perl, the Perl DBI, and mySQL. I am trying to figure out the best way to populate a drop down list with values from a table in a mySQL database. I suspect it is very easy, but I have not been able to pinpoint the appropriate code and get it working as I would expect. My goal

(Fwd) Oracle 9i and DBD::Oracle

2003-03-20 Thread Tim Bunce
- Forwarded message from Carlos Ferreiro <[EMAIL PROTECTED]> - Delivered-To: [EMAIL PROTECTED] From: "Carlos Ferreiro" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: Oracle 9i and DBD::Oracle Date: Thu, 20 Mar 2003 09:40:01 +0100 X-MDRemoteIP: 192.168.0.249 X-Return-Path: [EMAIL PROT

Re: DBD::Oracle on MacOSX - multiple definitions of symbol problem

2003-03-20 Thread Tim Bunce
On Thu, Mar 20, 2003 at 05:17:48PM +1000, Brook Schofield wrote: > Patches are available from: > > http://199.182.37.33/dbd-oracle-osx/Makefile.PL.patch > http://199.182.37.33/dbd-oracle-osx/oracle-support.tar.gz > http://199.182.37.33/dbd-oracle-osx/dbd-support.tar.gz > > as Tim let his domain n

Re: connect

2003-03-20 Thread Christian Merz
recently there were several postings, but you could try this: # my_config.pl $usr = 'scott'; $pass = 'tiger'; ... # my_script.pl require "my_config.pl"; ... if you are working with 'use strict' (recommended), you should declare your var's 'our': # my_config.pl our $usr = 'scott'; ... # my_scrip

RE: :ODBC 1.05 on HP. Need help!

2003-03-20 Thread Frans . Postma
Check if your perl was build with pthread and cl libraries included (perl -V). Those two need to be the first libraries in the lib list. If not, reconfigure/compile perl (5.8) using: ./Configure -Uuseshrplib -Ui_dbm useposix=true -A prepend:libswanted='cl pthread ' Greetings, ---