DBD-ODBC error: undefined symbol

2001-04-18 Thread Karen Ellrick
Once upon a time, I successfully compiled and installed the DBI and DBD::ODBC modules to use with EasySoft's ODBC-ODBC-Bridge. But now I have a new Linux box, and although I tried to do everything the same way as before (within the limits of my memory), I get the following error when I try to use

Re: DBD-ODBC error: undefined symbol

2001-04-18 Thread Alexander Farber (EED)
Karen Ellrick wrote: What does the ldd /usr/lib/perl5/site_perl/5.005/i386-linux/auto/DBD/ODBC/ODBC.so print? Are the correct libraries loaded? Well, I don't know what the correct libraries are (or even what the ldd command does), but the output is as follows:

RE: RE: Error in DBD::Oracle Installation

2001-04-18 Thread Prasanna Gopalakrishna
Yes. I do have following links in $ORACLE_HOME/lib any suggestion? -rwxr-xr-x 1 oracle 800 6721160 Apr 20 2000 libclntsh.so -rwxr-xr-x 1 oracle 800 6796000 Mar 29 09:24 libclntsh.so.1.0 -rwxr-xr-x 1 root other6721160 Mar 29 09:21 libclntsh.so.1.0.tmp -rw-r--r-- 1

DB and Access - hanging script

2001-04-18 Thread Butler, Jeff
Hi all, Don't know if anyone else has encountered this I'm using DBI and Access, I insert a number of rows into a table, and then at the end call prepare and execute an Insert that calls a query for it's values. If I run the two with seperate processes, this is no problem. If I try to

RE: RE: Error in DBD::Oracle Installation

2001-04-18 Thread Prasanna Gopalakrishna
I don't have any symbolic links for libclntsh.so-libclntsh.so.8.0 in $ORACLE_HOME/lib Do I need ? From: Mohanjit Singh [EMAIL PROTECTED] Date: 2001/04/17 Tue PM 01:42:49 EDT To: Prasanna Gopalakrishna [EMAIL PROTECTED] Subject: RE: RE: Error in DBD::Oracle Installation Do u have

DBI users in the Republic of Ireland?

2001-04-18 Thread Tim Bunce
I'd like to get in touch with any DBI users in the Republic of Ireland. Please send me an email. Tim.

RE: uninitialized value in concatenation?

2001-04-18 Thread Cliff
Hi there, Aye, if you get an uninit concat error that means that a variable you are using is not defined. Just print each of the variables seperately to check which one is not defined. Cliff. -Original Message- From: Ian Macdonald [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18,

Re: Error in DBD::Oracle Installation

2001-04-18 Thread Hardy Merrill
I haven't been following this thread, but here are my thoughts: * your environment at the bottom has ORACLE_BASE=/home/oracle ORACLE_HOME=/home/oracle those environment variables usually contain values relative to where you *installed* oracle - *NOT* relative to the home

ODBC and blobs

2001-04-18 Thread Cliff
Hey there, Just wondering, has anyone any experience with blobs in ODBC? I am having a little trouble creating a table via perl and import exporting blobs. If anyone has info or a reference to a site with any info I would be most gratefull. Thanks in Advance. Cliff.

DBD::ODBC with redbrick error

2001-04-18 Thread William Gunter
I've compiled v0.28 of DBD::ODBC with the redbrick odbc drivers (after making a few changes to the source), but I get this error when I run the tests. t/02simple..ok 1/14Error in opening config file; unable to continue DBI-connect(ACCRUE) failed: (DBD: db_login/SQLAllocEnv err=-1) at

DBI Proxy and SQL Statements

2001-04-18 Thread Jan-Hendrik Petersen
hi there I'm working with RH 7.0 and Oracle 8.1.5. The installation was no problem and the Proxy is working fine. When I try to execute sqls from a script everything works fine. Now I made a small script and try to execute sqls which are defined in the proxy.cfg. I get the following message:

Re: Re: Error in DBD::Oracle Installation

2001-04-18 Thread Prasanna Gopalakrishna
* How do I find the home directory of the "oracle" user * Oracle client installed and I connecting remotely to database using sqlplus * is there any db driver mismatch any suggestions? From: Hardy Merrill [EMAIL PROTECTED] Date: 2001/04/18 Wed AM 10:03:22 EDT To: Prasanna Gopalakrishna

Problem installing DBI on perl 5.004_02

2001-04-18 Thread Brochard, David
Hello I'd like to install DBI on perl 5.004_02 on windows NT 4 but I can't compile it. can someone help me find a pre-compiled version for this perl version or give me any other advise ? thank you David Brochard

Problem installing DBI on perl 5.004_02

2001-04-18 Thread Brochard, David
Hello I'd like to install DBI on perl 5.004_02 on windows NT 4 but I can't compile it. can someone help me find a pre-compiled version for this perl version or give me any other advise ? thank you David Brochard

Re: Problem installing DBI on perl 5.004_02

2001-04-18 Thread Jim Clark
If you are using ActiveState's Perl, you should use PPM to install DBI. The current version that PPM will install is probably 1.14. Just go to the DOS prompt and type 'PPM' to start the shell and then 'install DBI' or 'help' for more info. -Jim "Brochard, David" wrote: Hello I'd like to

InterScan NT Alert

2001-04-18 Thread postmaster
Receiver, InterScan has detected virus(es) in the e-mail attachment. Date: Thu, 19 Apr 2001 05:24:00 +1000 (AUS Eastern Standard Time) Method: Mail From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] File: hpux, osvers=10, archname=s700 uname='hp-ux nrtphcd9 b.10.20 e 9000831 2000300077

MS ACCESS Date Fields

2001-04-18 Thread ms2k
Hello, i'm using Perl/DBI/CGI to connect to an MS ACCESS database on the same server. I can use SELECT and fetch data and pass it to the browser, works fine. But now I need to use some kind of BETWEEN sql statement that will let me filter records for a specific period of time. Something

(Fwd) using perl with oracle 8.1.6

2001-04-18 Thread Tim Bunce
- Forwarded message from Yoel Steinmets - BH Photo Video [EMAIL PROTECTED] - From: Yoel Steinmets - BH Photo Video [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Wed, 18 Apr 2001 14:45:42 -0400 Subject: using perl with oracle 8.1.6 Priority: normal Hi Tim maybe you can help me with this

RE: MS ACCESS Date Fields

2001-04-18 Thread Steve Howard
I'm not positive if your actual statement looks like your model you gave to us, but the main thing I see wrong with your model is how you are using BETWEEN. If you have the Northwind Traders example database, here is an example query to do basically the same thing: SELECT * FROM Orders

Re: DB and Access - hanging script

2001-04-18 Thread paul
Post a snippet containing the offending code. You might also check out the DBI trace method. "Butler, Jeff" wrote: Hi all, Don't know if anyone else has encountered this I'm using DBI and Access, I insert a number of rows into a table, and then at the end call prepare and execute

DBD::Pg 0.96 Possible Bug

2001-04-18 Thread Victor Michael Blancas
Why is it that for DBD::Pg 0.95, the connect string is: $dbh = DBI-connect("dbi:Pg:dbname=$dbname", $username, $password); but in DBD::Pg 0.96, this doesn't work. I was only able to connect using the following connect string: $dbh =