DBI for IA-64

2001-11-10 Thread Ramesh Radhakrishnan
Hi, I am trying to install DBI-1.20 on a IA64 box running Windows XP. I was able to install MySql sucessfully, but cannot install DBI. I get the following error message - Microsoft (R) Program Maintenance Utility Version 7.00.8827 Copyright (C) Microsoft Corp 1988-1999. All rights reserved.

DBD::Pg func() question

2001-11-10 Thread Brad Hilton
Hello, I am new to using Postgresql and DBD::Pg, so please bear with my ignorance. In using the func() method to get column attributes, I am finding that DEFAULT is always undefined, even when the relevant column does have a default value. Is that attribute not storing what I think it is? I

problem Re. perl:DBI:ORACLE usage

2001-11-10 Thread KN Velayutham
Mr Tim Bunce I tried to execute the following code with Active perl 5 . 6 . 0 .623 on Windows 95 platform: use DBI; $dbh = DBI-connect('dbi:ORACLE:DSN', 'user', 'password'); I have installed dbd-oracle by Tim Bunce (win32 build) properly. I am getting compilation error as follows:

Re: DBD::Pg func() question

2001-11-10 Thread Alex Pilosov
Why are you using func()? You should be using dbd-table_attributes(tablename) But actually, yes, DEFAULT is not being set by DBD::Pg. If you want to fix it, please edit table_attributes function in Pg.pm in DBD::Pg source. -alex On 9 Nov 2001, Brad Hilton wrote: Hello, I am new to using